在 django 中使用 flipkart API
Use flipkart API in django
我想从 Flipkart 获取产品数据,Flipkart 为其提供产品 Feed API。我想知道如何使用提供的 json 或 xml 为我的网站获取数据,最好是在 Django 中。请明确说明,因为我不知道该怎么做。
这是 flipkart API 的 link:
http://www.flipkart.com/affiliate/apifaq
希望对您有所帮助。
import urllib2
def your_function():
response = urllib2.urlopen("https://affiliate-api.flipkart.net/affiliate/product/xml?id=XXX")
json_data = response.read()
return json_data # use this in any of your views to read json with product details
我想从 Flipkart 获取产品数据,Flipkart 为其提供产品 Feed API。我想知道如何使用提供的 json 或 xml 为我的网站获取数据,最好是在 Django 中。请明确说明,因为我不知道该怎么做。
这是 flipkart API 的 link: http://www.flipkart.com/affiliate/apifaq
希望对您有所帮助。
import urllib2
def your_function():
response = urllib2.urlopen("https://affiliate-api.flipkart.net/affiliate/product/xml?id=XXX")
json_data = response.read()
return json_data # use this in any of your views to read json with product details