jQuery is fast, lightweight and feature-rich client
side JavaScript Library/Framework which helps in to traverse HTML DOM,
make animations, add Ajax interaction, manipulate the page content,
change the style and provide cool UI effect. It is one of the most
popular client side library and as per a survey it runs on every second
website.
In my application it was an issue because client was encoding the body content.But I was not specifying the encoding or media type. I have specified and resolved the issue as below var content = new StringContent ( postData , Encoding . UTF8 , "application/json" ); httpClient . PostAsync ( uri , content );
Comments
Post a Comment