Sent Post Request But Server Says Get Request In Android Volley, What I Am Doing Wrong Here?
Java dependencies { compile 'com.android.volley:volley:1.0.0' } Here it is a simple volley request by which I want to send some post data, but it looks like request goes as
Solution 1:
I found the problem. I never thought of that kind of error :p.
I was requesting http://example.com/directory That causing the problem
When made request on http://example.com/directory/index.php , problem solved
Post a Comment for "Sent Post Request But Server Says Get Request In Android Volley, What I Am Doing Wrong Here?"