将视频添加到youtube观看记录中

时间:2014-08-20 13:25:35

标签: video youtube youtube-api

我正在尝试将视频插入我的Youtube观看记录

https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&key={my_api_key}&access_token={my_access_token}

POST data:
{
"snippet": {
"playlistId": "watch_history_playlist_id",
"resourceId": {
  "videoId": "video_id",
   "kind": "youtube#video"
}
}
}

我收到403 Forbidden错误:您无权执行此方法。

{
    "error": {
       "errors": [
           {
            "domain": "youtube.common",
            "reason": "forbidden",
            "message": "Forbidden"
        }
    ],
    "code": 403,
    "message": "Forbidden"
}
}

我已尝试插入其他播放列表并且工作正常,但观看历史记录插入无法正常工作,我在堆栈溢出中发现了另一个问题,但解决方案无法正常工作。

0 个答案:

没有答案
相关问题