0

当我尝试以最终用户身份对 Zendesk API 进行身份验证,然后列出票证时,它总是以 403 Forbidden 响应:

例如

GET
https://mysite.zendesk.com/api/v2/requested.json
Basic Authorization

返回 403

{
    "error": {
        "title": "Forbidden",
        "message": "You do not have access to this page. Please contact the account owner of this help desk for further help."
    }
}
4

1 回答 1

2

似乎“票证”API(如上)不适用于最终用户。相反,他们必须使用“请求”API。

所以使用:https://mysite.zendesk.com/api/v2/requests.json而不是......

于 2015-08-18T12:55:31.283 回答