RingCentral JavaScript SDK(HTTP 400 - 未授权此授权类型)
RingCentral JavaScript SDK (HTTP 400 - Unauthorized for this grant type)
我们已尝试使用 JavaScript SDK 连接到 RingCentral 中的 RingCentral 令牌身份验证 URL。
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');
});
提前致谢
此 JS SDK 请求使用 OAuth 2.0 密码流授权类型。要将其与 RingCentral API 一起使用,您需要确保您的应用在 OAuth 设置中针对此授权类型进行了配置。
请参阅以下 Stack Overflow 线程,了解我如何 do/verify 这个问题的答案,包括屏幕截图。
我们已尝试使用 JavaScript SDK 连接到 RingCentral 中的 RingCentral 令牌身份验证 URL。
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');
});
提前致谢
此 JS SDK 请求使用 OAuth 2.0 密码流授权类型。要将其与 RingCentral API 一起使用,您需要确保您的应用在 OAuth 设置中针对此授权类型进行了配置。
请参阅以下 Stack Overflow 线程,了解我如何 do/verify 这个问题的答案,包括屏幕截图。