I m new on Android Programmer,i want to send data to server through JSON in following format and implement Json in this format..and also want to fetch data from server..
- URL: http://fort.example.com
- Signup
{
    "signup": [
    {
    "username": "test1264",
    "password": "1234",
    "email": "example@gmail.com",
    "phoneno": "223344556",
    "altphoneno": "12345678",
    "firstname": "abc",
    "lastname": "xyz"
    }    ]
}
Response:
on success:
{"status":1}
on failure:{"status":0}
- JSON for user login:
{"login":[
      {"username":"test1234",
       "password":"1234"}
       ]}
Response:
on success:  {
"user": [
{
"firstname": "abc",
"lastname": "xyz",
"email": "example@gmail.com",
"phone": "99887766",
"username": "test1234"
}
]
}
On failure: {"error":["Auth error"]}