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

Popular posts from this blog

Lists in Python -

android - can not access to progress bar in an other activity -

java - Vaadin 7 Pass Data Between Views -