I'm trying to integrate with Shopping.com REST service.
so I wrote a simple (minimum code) C# application to retrieve the XML data using HttpWebRequest
class. I've used StopWatch
for bench-marking and the response time (Including Stream.ReadToEnd()
) is something like 1300-1700 milliseconds.
it might sound good, but then I've tested the response time in Chrome browser with Fiddler and the response time was about 600-800.
I've read few articles. some suggested set HttpWebRequest.Proxy to null / WebRequest.DefaultWebProxy
but it didn't make significant improvement.
Here the request-url:
http://sandbox.api.shopping.com/publisher/3.0/rest/GeneralSearch?apiKey=78b0db8a-0ee1-4939-a2f9-d3cd95ec0fcc&trackingId=7000610&keyword=nikon
So, what should I do to reach this response time?