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.