I am writing an app to query the Google shopping api. Using the request below with a valid api key returns me the results I’m expecting in a browser but not from an Android device. Why would I get a 404 not found error when sending the request through the HttpClient but the same url in a browser works?
API Call:
Thanks
As described in my comment.
The documentation for the api is at code.google.com/apis/shopping/search/v1/getting_started.html. I got it to work by switching the request type to a HttpGet instead of HttpPost. Still not sure why this would make a 404 error come back.