Em là newbie muốn nghịch vọc api shopee nhưng em get request vào api/v4/item/get?itemid=12729263306&shop_id=379233423 thì 403 ạ
{"tracking_id":"d4f57765-da8d-45e5-9b6d-
bb1a80302d55","action_type":2,"error":90309999,"is_customized":false,"is_login":false,"is_hit_sap":false,"platform":0,"event_id":2,"report_extra_info":"eyJldmVudF9pZCI6Miwic3RyYXRlZ3lfaWQiOjIwMDAwMTE2LCJpc19oaXRfbW9kdWxlIjoyfQ=="}
huhu hay tại em add thiếu header ạ :( mong có thể được các anh/chị xem giúp em 🥹
import requests
url = 'https://shopee.vn/api/v4/item/get?itemid=12729263306&shop_id=379233423'
my_headers = {
'authority': 'shopee.vn',
'method': 'GET',
'scheme': 'https',
'accept': '*/*',
'accept-encoding': 'gzip, deflate, br',
'accept-language': 'zh-TW,zh;q=0.9,en-US;q=0.8,en;q=0.7,ja;q=0.6',
'if-none-match': "55b03-9ff4fb127aff56426f5ec9022baec594",
'user-agent':
'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36',
'x-api-source': 'pc',
'x-requested-with': 'XMLHttpRequest'
}
r = requests.get(url=url, headers=my_headers)