RingCentral JavaScript SDK(HTTP 400 - 此授权类型未经授权)

时间:2017-12-06 16:29:47

标签: javascript oauth-2.0 ringcentral

我们尝试使用JavaScript SDK连接到RingCentral中的RingCentral令牌身份验证网址。

  

https://platform.devtest.ringcentral.com/restapi/oauth/token

我们收到Http 400(错误请求) - 未授权此类授权类型错误。

400 Bad Request

{
    "error": "unauthorized_client",
    "error_description": "Unauthorized for this grant type",
    "errors": [
        {
            "errorCode": "OAU-251",
            "message": "Unauthorized for this grant type"
        }
    ]
}

这是我的代码:

var SDK = require('ringcentral');
   var rcsdk = new SDK({ 
       server: SDK.server.sandbox, 
       appKey: 'appkey',
       appSecret: 'appSecret',
       redirectUri: ''
   });
   rcsdk.platform()
   .login({
       username: 'phone number', // phone number in full format
       extension: 101, // leave blank if direct number is used
       password: 'password'
   })
   .then(function(response) {
       console.log(response)
   })
   .catch(function(e) {
       console.log(e.message  || 'Server cannot authorize user');
   });

提前致谢

1 个答案:

答案 0 :(得分:1)

此JS SDK请求使用OAuth 2.0密码流授予类型。要在RingCentral API中使用此功能,您需要确保在应用的OAuth设置中为此授权类型配置了应用。

有关如何执行/验证此操作的答案,请参阅以下Stack Overflow线程,包括屏幕截图。

RingCentral Auth Token Failed in Curl Call