Does Android Volley support SSL?

后端 未结 3 1472
迷失自我
迷失自我 2020-11-27 04:39

Does anyone know whether Volley supports SSl in Android? Is there is any way to support SSL via Volley?

3条回答
  •  隐瞒了意图╮
    2020-11-27 05:14

    Yes, of course.

    Android Volley is a library that you can use to easily and efficiently manage your networking operations over http. If the underlying layer use SSL (i.e. https) or not is totally unrelated.

    In other words: the Volley framework is TCP layer agnostic and SSL only impact the TCP layer.

提交回复
热议问题