我很难在 Dotmailer 调用 REST API。
他提供了一个文件来调用 OAuth 并获取令牌。但它总是抛出同样的错误。
输入是
发布方法 URI:https ://r1-app.dotmailer.com/OAuth2/Tokens.ashx
JSON 输入为
{
"client_id" : "apiuser-XXXXXXXXXXX@apiconnector.com",
"redirect_uri" : null,
"client_secret" : "XXXXXXXXXXXX",
"grant_type": "authorization_code",
"code":"MyServerCode",
"test_mode":true
}
输出为
{
"error": "invalid_request",
"error_description": "There was a problem with the 'grant_type' parameter: The parameter is required."
}
任何人都知道错误。
提前致谢...