0

Dotmailer で REST API を呼び出すのに苦労しています。

彼は、OAuth を呼び出してトークンを取得するためのドキュメントを提供します。しかし、常に同じエラーがスローされます。

入力は

Post Method 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 に答える