XML callback of BestBuy API -
i implementing bestbuy api. have seen it's json callback url. can tell me xml callback url?
i have written query
string url = "https://api.bestbuy.com/v1/products((search="+keywords+"))?apikey=myapikey&callback=xml_callback&format=xml";
but gives me nullpointer exception
here's link search documentation: https://bestbuyapis.github.io/api-documentation/
here curl example of searching wildcard product name xml response:
curl -v 'https://api.bestbuy.com/v1/products(name=contigo*)?format=xml&show=sku,name,saleprice&apikey=myapikey'
Comments
Post a Comment