1

尝试创建提要文档(此处),我收到InvalidInput错误代码。身份验证效果很好(我尝试了其他端点并且它有效)所以我认为标头不是问题。

这是我的示例代码:

endpoint = 'https://sellingpartnerapi-eu.amazon.com/feeds/2020-09-04/documents'
body = {
    "contentType": "text/tab-separated-values; charset=UTF-8"
}
resp = requests.post(
    endpoint,
    auth=self.amazon_auth.auth, 
    headers=self.amazon_auth.headers,
    json=body
)
return resp

响应代码:

{'errors': [{'code': 'InvalidInput',
   'message': 'Invalid Input',
   'details': ''}]}

我也尝试使用不同contentType的字符集(如text/plain),但我收到相同的错误代码!

这是提交提要教程的第一步。

我正在尝试创建提要,以便cartonIds下载我在亚马逊卖家中心创建的货件的标签。

任何提示,帮助都非常受欢迎!

谢谢!

4

3 回答 3

1

我通过以下方式解决了这个问题:

requests.post(data=json.dumps(body))

还要确保你也传递身体以进行签名

于 2021-07-14T12:34:29.717 回答
0

我使用 RestSharp restRequest1.AddParameter(....); 给了我和你一样的错误 Invalid Input 但下面的行给了我一个响应值 restRequest1.AddJsonBody(new { contentType = "text/xml; charset=UTF-8" }); 它将 obj 序列化为 json 格式并将其添加到请求正文中。

于 2021-01-22T13:13:21.730 回答
-1

C# 中的这段代码对我有用,我成功上传了一个提要

我的上传方法:

private static bool UploadFile(byte[] encrypted, string url)
{
    bool isUploaded = false;

    var contentType = "text/tab-separated-values; charset=UTF-8";

    var parameter = new Parameter
    {
        Name = contentType,
        Value = encrypted,
        Type = ParameterType.RequestBody
    };

    var restRequest = new RestRequest(Method.PUT);
    restRequest.Parameters.Add(parameter);

    var restClient = new RestClient(url);
    var response = restClient.Execute(restRequest);

    isUploaded = response.StatusCode == System.Net.HttpStatusCode.OK;

    return isUploaded;
}
于 2021-02-04T13:27:37.167 回答