-
-
Notifications
You must be signed in to change notification settings - Fork 275
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VolleyPlus BasicNetwork.performRequest: Unexpected response code 500 for http://takeone.ade.co.ke/index.php #73
Comments
Pass "text/plain" like this smr.addMultipartParam("Param string", "text/plain", "data text"); |
Thank you for your reply, I updated to the latest volleyplus and used the code below. `public class MainActivity extends AppCompatActivity {
`
Is it a server issue, and could know why it is happening? |
Yes seems like issue at the server. It means the request data you sent is not getting parsed correctly at the server. Just debug it on the server and fix the issue. |
I ma getting the above error when I try to submit data via volleyplus to a server. The link works with regular google volley and on localhost.
`public class MainActivity extends AppCompatActivity {
public static final String TAG = "Message";
static String URL_API = "http://takeone.ade.co.ke/index.php";
Button post_button;
}`
The text was updated successfully, but these errors were encountered: