簡體   English   中英

RingCentral在發送傳真時給我“ [OutboundFaxes]”錯誤

[英]RingCentral giving me error of “[OutboundFaxes]” at the time of sending FAX

我正在嘗試使用以下網址"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"
}

發出“發送傳真”請求時,承載令牌存在問題。

因為我使用主要帳戶詳細信息生成令牌,並且在發送傳真時使用了擴展名102的擴展名,並且使用主帳戶擴展名101生成了承載令牌。這就是為什么它拋出[OutboundFaxes]權限錯誤的原因。

要發送帶有擴展名102的ExtensionId的FAX,然后使用子帳戶102詳細信息而不是主帳戶生成令牌。

我已成功復制了該問題。

測試用例

根本原因就是@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工程團隊。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM