Android volley to handle redirect

前端 未结 8 1229
名媛妹妹
名媛妹妹 2020-11-27 18:43

I recently started to use Volley lib from Google for my network requests. One of my requests get error 301 for redirect, so my question is that can volley handle redirect so

8条回答
  •  再見小時候
    2020-11-27 19:18

    Replace your url like that url.replace("http", "https");

    for example: if your url looking like that : "http://graph.facebook......." than it should be like : "https://graph.facebook......."

    it works for me

提交回复
热议问题