需要URL(演示)进行Ups Shipment Api集成

时间:2018-06-20 08:42:08

标签: python-3.x odoo-11

我只需要跟踪货物并请求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())

0 个答案:

没有答案