0

我很难在 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." }

任何人都知道错误。

提前致谢...

4

1 回答 1

0

我认为 Dotmailer OAuth 有一些问题。
我被替代地使用基本身份验证方法来访问 dotmailer API。

基本 URI = https://api.dotmailer.com/v2/
标头
Content-type: application/json Authorization: Basic base64_convertion(username:password).

示例
Content-type: application/json Authorization: Basic XXXXXXXXXXXXXXXX.
使用 WADL 方法。
https://api.dotmailer.com/v2/help/wadl

于 2016-04-25T07:39:09.373 回答