0

RingCentral でアクセス トークンを更新するために API を呼び出していますが、次のエラーがスローされます。

{
    "error":"invalid_request",
    "error_description":"Unsupported grant type",
    "errors":[
        {
            "errorCode":"OAU-250",
            "message":"Unsupported grant type"
        }
    ]
}

誰でも私を助けることができますか?

4

3 に答える 3

0

RingCentral GitHubから入手できる RingCentral API を使用しています

認証リクエストの例を次に示します。

var request = new Request("/restapi/oauth/token",
new Dictionary<string, string> {
    { "grant_type", "authorization_code" },
    { "redirect_uri", redirectUri },
    { "code", authCode },
    { "refresh_token_ttl", "604800" } });
于 2016-11-28T14:23:34.830 に答える
0

grant_typeフォームフィールドを投稿しているかどうか、およびそれがに設定されていることを確認してくださいrefresh_token

于 2016-09-19T19:02:48.953 に答える