HI,
I am using PostSting for POST data using curl link. the server does not support "Contant-type : application/json". Therefore I use 'Content-type': 'application/x-www-form-urlencoded'
In PostString method I pass parameter for json type =
same above in urlencoded content-type :
The above working fine. But I don't know how to user the following json parameter in urlencorded type
I can make up-to this further I don't know how to continue
I am using PostSting for POST data using curl link. the server does not support "Contant-type : application/json". Therefore I use 'Content-type': 'application/x-www-form-urlencoded'
In PostString method I pass parameter for json type =
[{"email":"aa11oo@e.com","username":"ooaa112"}]
same above in urlencoded content-type :
"email=aa11oo@e.com&username=ooaa112"
The above working fine. But I don't know how to user the following json parameter in urlencorded type
[{"email":"aa11oo@e.com","username":"ooaa112","billing": {"address_1": "969 Market","address_2": "", "city": "San Francisco"}}]
I can make up-to this further I don't know how to continue
"email=aa11oo@e.com&username=ooaa112"&"billing=???"