当前位置:网站首页>Taobao commodity review API interface (item_review get Taobao commodity review API interface), tmall commodity review API interface

Taobao commodity review API interface (item_review get Taobao commodity review API interface), tmall commodity review API interface

2022-07-04 22:37:00 wx_ one billion five hundred and ninety-seven million sixty-thr

Taobao commodity evaluation api Interface (item_review- Get Taobao product reviews API Interface ), Tmall Product Review API The interface can be through products id, Get product evaluation information 、 Evaluation content 、 Buyers show pictures 、 Comment views 、 Evaluation video 、 The data on the evaluation and follow-up page can be obtained , The interface connection is as follows :

1. Common parameters

name type must describe
keyString yes call key( Must be GET Way of splicing in URL in , Click to get the test key and secret
secretString yes Call key
api_nameString yes API The name of the interface ( Included in the request address )[item_search,item_get,item_search_shop etc. ]
cacheString no [yes,no] Default yes, The cached data... Will be called , It's quite fast
result_typeString no [json,jsonu,xml,serialize,var_export] Return data format , The default is json,jsonu The output content can be read directly in Chinese
langString no [cn,en,ru] Translation language , Default cn Simplified Chinese
versionString no API edition

2. Request parameters

Request parameters :num_iid=600530677643&data=&page=1

Parameter description :num_iid: Taobao products ID
sort: Sort 0: Default sort ,1: Latest sort  

3. Response parameter

name type must Example value describe

rate_content

String0 The fabric of the clothes is very good It's comfortable to wear The clothes are very suitable ! Comment content

rate_date

Date02019-03-16 12:10:24 Comment date

pics

MIX0["//img.alicdn.com/bao/uploaded/i4/O1CN01Zmq4QI1dqwnpBIxmX_!!0-rate.jpg"] Comment on the picture

display_user_nick

String0 Li ***0 Buyer's nickname

auction_sku

String0 Color : white ( Plush ); Size :2XL Comment on product attributes

add_feedback

String0 The fabric of the clothes is very good It's comfortable to wear The clothes are very suitable ! Review the content

add_feedback_images

MIX0["//img.alicdn.com/bao/uploaded/i4/O1CN01Zmq4QI1dqwnpBIxmX_!!0-rate.jpg"] Review pictures

video

String0http://cloud.video.taobao.com/play/u/416a306c576e44524a75367539493165745863466b513d3d/p/1/d/sd/e/6/t/1/288913501300.mp4 Video address

videoCover

String0https://img.alicdn.com/imgextra/i3/O1CN01cvjYjY28SRpqyDJIN_!!0-tbbala.jpg Video capture

 4. Request example (CURL、PHP 、PHPsdk 、Java 、C# 、Python...)

# coding:utf-8
"""
Compatible for python2.x and python3.x
requirement: pip install requests
"""
from __future__ import print_function
import requests
#  Request example  url  The default request parameters have been changed URL code 
url = "https://vx19970108018/taobao/item_review/?key=< Your own apiKey>&secret=< Your own apiSecret>&num_iid=600530677643&data=&page=1"
headers = {
    "Accept-Encoding": "gzip",
    "Connection": "close"
}
if __name__ == "__main__":
    r = requests.get(url, headers=headers)
    json_obj = r.json()
    print(json_obj)

5. Response example

{
code: 200,
msg: " The request is successful 【success】",
total_results: "53",
data: [
{
feedback: " This user did not fill in the evaluation .",
feedbackDate: "2021-03-14",
reply: "",
userNick: "g**0",
skuId: "4754825839147",
skuMap: {
 Color classification : " Standard management system "
},
feedPicList: null,
readCount: "0",
video: [],
appendedFeed: []
},
{
feedback: " Customer service , Monarch , Seriously , Solve problems in time ! severe , Next time I'll find Junjun . One year warranty , It's worth having !?‍️‍??‍️‍??‍️‍??‍️‍?‍??‍️‍?‍??‍️‍?‍??‍?‍??‍?‍??‍?‍?‍??‍?‍?‍??‍?‍?‍??‍?‍??‍?‍??‍?‍?‍??‍?‍?‍??‍?‍?‍??‍?‍??‍?‍??‍?‍?‍??‍?‍?‍??‍?‍?‍??‍??‍??‍?‍??‍?‍??‍?‍??‍??‍??‍?‍??‍?‍??‍?‍?",
feedbackDate: "2021-03-14",
reply: " Your appreciation is valued by us , Keep every word in mind . Your affirmation makes our persistence meaningful , We will continue to uphold the user-oriented service concept , Constantly improve our smart card products and services , Let you have a better product experience . Your satisfaction is our unswerving pursuit !",
userNick: " easy **6",
skuId: "4754825839147",
skuMap: {
 Color classification : " Standard management system "
},
feedPicList: [
"//img.alicdn.com/imgextra/i3/0/O1CN01R4yTy21CAouF3TyCo_!!0-rate.jpg"
],
readCount: "1",
video: [],
appendedFeed: []
}
]
}

原网站

版权声明
本文为[wx_ one billion five hundred and ninety-seven million sixty-thr]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/185/202207042056223539.html