I have created API for creating a customer in PHP, the client side is in Android
would use a POST
request to access this API. For testing I have used chrome postman where I had used post data as :
{"name":"test","marks":["12","13","16"],"age":19}
and it is working fine.
I am getting marks as array itself ["12","13","16"]
.
But from android client I am getting as text ["12","13","14"]
.
What may be the possible reason?