I m new on the Android Programmer, I want to send data to the server via JSON in the following format and implement Json in this format .., and also want to receive data from the server.
{ "signup": [ { "username": "test1264", "password": "1234", "email": " example@gmail.com ", "phoneno": "223344556", "altphoneno": "12345678", "firstname": "abc", "lastname": "xyz" } ] }
Answer:
by success: {"status":1}
on failure: {"status":0}
{"login":[ {"username":"test1234", "password":"1234"} ]} Response: on success: { "user": [ { "firstname": "abc", "lastname": "xyz", "email": " example@gmail.com ", "phone": "99887766", "username": "test1234" } ] }
In case of failure: {"error":["Auth error"]}
source share