Volley not calling getParams() for standard POST request

后端 未结 11 927
执念已碎
执念已碎 2020-11-30 07:56

I am trying to post some parameters to my rails API using Volley in Android. This is the code:

I tried with two log statements, one in getParams() and

11条回答
  •  抹茶落季
    2020-11-30 08:30

    it happened because Volley params cache.

    clean it like this

    requestQueue.getCache().clear();

    hope it's useful!

提交回复
热议问题