【发布时间】:2019-12-11 19:45:38
【问题描述】:
我想使用视频 ID 请求我的私人视频文件(我的帐户是 Pro)。但我不知道如何在请求中验证我的帐户。
这就是我所做的!
GET https://api.vimeo.com/videos/{video_id}
身体
{
"grant_type": "client_credentials"
}
标题
"Authorization" : "bearer {access_token}"
"Accept" : "application/vnd.vimeo.user+json;version=3.0,application/vnd.vimeo.video+json;version=3.4"
"Content-Type" : "application/json"
这是对此的回应..
{
"error": "Something strange occurred. Please contact the app owners.",
"link": null,
"developer_message": "No user credentials were provided.",
"error_code": 8003
}
【问题讨论】: