Open GoogleCodeExporter opened 9 years ago
I think I have found the solution. My mistake was trying to fit the JSON Arrays
into the Form fields (being a contradiction by itself).
The solution was to solely use the Raw panel & copy/paste the JSON code
(includining the JSON Arrays) there.
Original comment by lukaszie...@gmail.com
on 13 Jan 2014 at 3:38
Attachments:
feel free to close / remove the issue.
Original comment by lukaszie...@gmail.com
on 13 Jan 2014 at 3:38
This post was helpful to me... thank you.
Original comment by bendaka...@gmail.com
on 5 Jun 2014 at 7:49
thanks lot
Original comment by bhushanv...@gmail.com
on 15 Jun 2014 at 7:30
Hi i am working on Web Api's and i am not finding way how to use chrome rest
client for post method with parameters if i have parameters in key-value pair
where key is blank and value has all the values
like this:
{ '': '{"UserEmail":"pankaj.softprodigy1@gmail.com","UserPassword":"123456" }'
},
and the method is written as :
public string PostLogin([FromBody] string value)
{
}
where value has to accept this.
Original comment by sheetalb...@gmail.com
on 19 Jun 2014 at 6:21
The best approach usually is to see what the GET response of your API looks
like and to take this as the base for your POST/PUT call.
Also take a look at the screenshot "POST-successful.gif". Your JSON code most
likely is missing squared brackets... and do you hash encode the user password?
Original comment by lukaszie...@gmail.com
on 19 Jun 2014 at 9:22
Original issue reported on code.google.com by
lukaszie...@gmail.com
on 13 Jan 2014 at 12:07Attachments: