tags:

views:

53

answers:

1

How do extract parameters from the URL when the method is posted using JSON?

+8  A: 

I guess that you are getting the response in JSON form

for extracting the parameters you can use Newtonsoft.Json.dll.You will get the documentation here :- http://james.newtonking.com/pages/json-net.aspx or after getting the data you can use usual crawling methods for extracting the data

Ankush Roy