在电子商务网站上,我有产品信息的架构标签。我在热门产品中添加了一些视频。现在我想将这些视频与产品页面中的架构相关联。
我应该使用哪种属性?
我认为https://schema.org/VideoObject与产品无关。
review属性符合我的要求吗?
答案 0 :(得分:0)
产品视频不是#!/usr/bin/python
import urllib2
import json
def getInventory(steamid):
data = urllib2.urlopen('http://steamcommunity.com/profiles/'+steamid+'/inventory/json/730/2')
json_data = json.loads(data.read())
descriptions = json_data['rgDescriptions']
print [descriptions[v]['name'] for v in descriptions]
print('Done!')
return
getInventory('76561197967150540');
所以我认为这不对。我会用Review
。
VideoObject
中有足够的属性可以对相关产品进行有意义的引用。