In my scenario my API handles the json reading it as

if (context.Request.Files.Count > 0)   
       {
            jsonData = context.Request.Params["key"]; 
       }

from my application how can i send a web request to this api without json as query string parameter. Sine Json is lengthy and i know query string is limited.

For android an ios this api works fine.

i have tried to add it to the header. but in vain.

how can i add it so that "jsonData = context.Request.Params["key"]; " will get my json.

Thanks in advance.

share|improve this question
Can you provide an example request you'd like to use? You say you don't want to put json in the query string, then you say you want to read json from the query string. – Colin Young 7 hours ago

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.