我只需要跟踪货物并请求Api Link /任何代码。
这是演示代码: 我没有身份验证载体。
import requests
headers = {
'Authorization': 'ShippoToken ,<shippo_test_7406cb4031cd20465ee984a6b65595bef87cfbf8>',
'Content-Type': 'application/json',
}
data = [
('amount', '2000'),
('currency', 'usd'),
('source', 'tok_amex'),
('metadata[order_id]', '6735'),]
response = requests.post('https://api.goshippo.com/shipments/', headers=headers, data=data)
print(response.json())