RingCentral 在发送传真时出现“[OutboundFaxes]”错误
RingCentral giving me error of "[OutboundFaxes]" at the time of sending FAX
我正在尝试使用以下 URL "https://platform.devtest.ringcentral.com/restapi/v1.0/account/~/extension/****88004/fax"
使用 POSTMAN 发送传真
我得到:
{
"errorCode": "CMN-408",
"message": "In order to call this API endpoint, user needs to have [OutboundFaxes] permission for requested resource.",
"errors": [
{
"errorCode": "CMN-408",
"message": "In order to call this API endpoint, user needs to have [OutboundFaxes] permission for requested resource.",
"permissionName": "OutboundFaxes"
}
],
"permissionName": "OutboundFaxes"
}
发送传真请求时 Bearer Token 有问题。
因为我使用主帐户详细信息来生成令牌,并且在发送传真时我使用的是分机 102 的 extensionid,而 Bearer Token 是使用主帐户分机 101 生成的。这就是它抛出 [OutboundFaxes] 权限的原因错误。
要使用分机号 102 的 ExtensionId 发送传真,然后使用子帐户 102 详细信息而不是主帐户生成令牌。
我已经成功重现了这个问题。
test case
根本原因正如@Jack 所说:使用分机号 101 授权,然后尝试使用分机号 102 发送传真。
错误信息是
{ errorCode: 'CMN-408',
message: 'In order to call this API endpoint, user needs to have [OutboundFaxes] permission for requested resource.',
errors:
[ { errorCode: 'CMN-408',
message: 'In order to call this API endpoint, user needs to have [OutboundFaxes] permission for requested resource.',
permissionName: 'OutboundFaxes' } ],
permissionName: 'OutboundFaxes' }
我认为错误信息需要改进。很难通过阅读找出根本原因。我已将此问题报告给 RingCentral 工程团队。
我正在尝试使用以下 URL "https://platform.devtest.ringcentral.com/restapi/v1.0/account/~/extension/****88004/fax"
使用 POSTMAN 发送传真
我得到:
{
"errorCode": "CMN-408",
"message": "In order to call this API endpoint, user needs to have [OutboundFaxes] permission for requested resource.",
"errors": [
{
"errorCode": "CMN-408",
"message": "In order to call this API endpoint, user needs to have [OutboundFaxes] permission for requested resource.",
"permissionName": "OutboundFaxes"
}
],
"permissionName": "OutboundFaxes"
}
发送传真请求时 Bearer Token 有问题。
因为我使用主帐户详细信息来生成令牌,并且在发送传真时我使用的是分机 102 的 extensionid,而 Bearer Token 是使用主帐户分机 101 生成的。这就是它抛出 [OutboundFaxes] 权限的原因错误。
要使用分机号 102 的 ExtensionId 发送传真,然后使用子帐户 102 详细信息而不是主帐户生成令牌。
我已经成功重现了这个问题。
test case
根本原因正如@Jack 所说:使用分机号 101 授权,然后尝试使用分机号 102 发送传真。
错误信息是
{ errorCode: 'CMN-408',
message: 'In order to call this API endpoint, user needs to have [OutboundFaxes] permission for requested resource.',
errors:
[ { errorCode: 'CMN-408',
message: 'In order to call this API endpoint, user needs to have [OutboundFaxes] permission for requested resource.',
permissionName: 'OutboundFaxes' } ],
permissionName: 'OutboundFaxes' }
我认为错误信息需要改进。很难通过阅读找出根本原因。我已将此问题报告给 RingCentral 工程团队。