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

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -