我目前正致力于从cdon获取客户数据,这是一个电子商务平台。他们在这里有他们的API文档:
首先让我告诉你我的代码:
myToken = '<token here>'
myUrl = 'https://admin.marketplace.cdon.com/api/reports/d8578ef8-723d-46cb-bb08-af8c9b5cca4c'
head = {'Authorization': 'token {}'.format(myToken),
'Status':'Online',
'format':'json'}
filters = '?filter={"Status":["Online"],"format": ["json"] }}'
response = requests.get(myUrl + filters, headers=head)
report = response.json()
print(report.products)
这只返回参数。例如,在这个JSON:CDON Github
状态的值为在线,此online
是一组我只想获得的项目。
我想要得到的是这样的回应:
{
"Products": [
{
"SKU": "322352",
"Title": "Fabric Cover",
"GTIN": "532523626",
"ManufacturerArticleNumber": "",
"StatusCDON": "Online",
"ExposeStatusCDON": "Buyable",
"InStock": 0,
"InStockCDON": 0,
"CurrentPriceSE": null,
"OrdinaryPriceSE": null,
"CurrentPriceCDONSE": 299.0000,
"OrdinaryPriceCDONSE": null,
"CurrentPriceDK": null,
"OrdinaryPriceDK": null,
"CurrentPriceCDONDK": null,
"OrdinaryPriceCDONDK": null,
"CurrentPriceNO": null,
"OrdinaryPriceNO": null,
"CurrentPriceCDONNO": null,
"OrdinaryPriceCDONNO": null,
"CurrentPriceFI": null,
"OrdinaryPriceFI": null,
"CurrentPriceCDONFI": null,
"OrdinaryPriceCDONFI": null
},
这意味着在线
项目的完整列表我应该如何把这个......在我试过的所有API中,这个非常令人困惑,这甚至是RestFul?如果我可以实现python相当于这个C#示例代码:
public string Post(Guid repordId, string path)
{
var filter = new JavaScriptSerializer().Serialize(new
{
States = new[] { "0" } // Pending state
});
var content = new FormUrlEncodedContent(new[]
{
new KeyValuePair("ReportId", repordId.ToString()),
new KeyValuePair("format", "json"),
new KeyValuePair("filter", filter)
});
var httpClient = new HttpClient() { BaseAddress = new Uri("https://admin.marketplace.cdon.com/") };
httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("api", ApiKey);
var response = httpClient.PostAsync(path, content).Result;
response.EnsureSuccessStatusCode();
return response.Content.ReadAsStringAsync().Result;
}
我可能无法理解这个API是如何工作的,我得到的响应是从他们的报告函数中以JSON格式手动获取的。
我做了很多尝试,在那段代码(我的代码)中,我停了下来,在这4小时内让我放弃并问。相信我已经搜索了尽可能多的参考文献。这真的令人困惑。
如何获得我想要的回复?通过网址过滤?还是通过标题?这甚至是宁静的吗?帮助T_T
答案 0 :(得分:0)
文档在第一行说明,强调我的:
为了生成报告,您对报告API执行POST调用,并使用您希望用于报告的参数。
您的Python代码没有发出POST请求,您正在尝试GET请求。文档继续
[...]过滤您设置
CountryCodes
的瑞典订单 属于“瑞典”并获得您设置的退货和取消订单 States属性为2和3.所以最后过滤器会看起来 像这样:{ "CountryCodes": [ "Sweden" ], "States": ["2", "3"] }
因此,您需要使用所需的过滤器准备filter
对象(Python中的dictionary)。幸运的是,字典的Python语法是等价的(Python很灵活,也允许使用单引号字符串):
filter = {
'CountryCodes': [ 'Sweden' ],
'States': [ '0' ]
}
文档继续
然后将参数作为表单数据(
content-type: application/x-www-form-urlencoded
)发布,以便请求正文看起来像 这样:ReportId=d4ea173d-bfbc-48f5-b121-60f1a5d35a34&format=json&filter={"CountryCodes":["Sweden"],"States":["2","3"]}
application/x-www-form-urlencoded
是HTTP post的默认值,请求模块知道并自动为您执行此操作。您需要做的就是准备一个data
字典,其中包含您要发布的数据。
data = {
'ReportId': 'd4ea173d-bfbc-48f5-b121-60f1a5d35a34',
'format': 'json'
'filter': json.dumps(filter)
}
filter
参数应该是JSON格式。您必须通过json.dumps()
自行编码。
import json
head = { ... as above }
filter = { ... as above }
data = { ... as above }
response = requests.post(url, data, header=head)
我会留下将Authorization标头正确设置为适合您的练习。部分原因是因为它并不难,部分原因是因为我无意在此网站上创建API密钥只是为了测试这一点,部分原因是因为您的当前标头已经完全可行。