For YouTube APIs, the only scope that is document is http://gdata.youtube.com, which asks the user to grand full read/write access. Is there a scope that asks/grants read-only permissions OR just read permissions to Youtube Insight data?
标签:
youtube-api
相关问题
- YouTube API refresh token revoked with 400 code “i
- YouTube Data API v3 allowed referers for browser a
- Auto Upload of Videos to my account, using youtube
- handling errors in youtube data api in javascript
- YouTube API v3.0: How do you determine if a video
相关文章
- How to get the last 24 hours worth of videos from
- How can I get a list of the most viewed Youtube vi
- YouTube API 3 GET last videos from specific User
- youtube-upload runs from terminal but not cron cal
- Our application uploads hundreds of videos per day
- Youtube iframe api check if video exists
- Play YouTube playlist automatically
- Can I schedule YouTube videos for release via the
v3 of the YouTube Data API now has support for a read-only scope:
https://www.googleapis.com/auth/youtube.readonly
Tokens obtained with that scope won't work with the older v1/v2 of the API, though. You can only use them with v3 calls.
Found out from one of the YouTube API guys (4/16/12):
"It's not possible with the current API, unfortunately. There's just a single scope that grants full read/write access to the account. This is a valid request, though, and I'll pass it along to the engineering team. I can't make any promises about whether it will be implemented, though."
The read-only analytics permission (https://www.googleapis.com/auth/analytics.readonly) used to work under v2 as well and it's even in the docs: https://developers.google.com/analytics/devguides/reporting/core/v2/gdataAuthentication
However it doesn't work now and Google doesn't look very motivated to fix it: http://code.google.com/p/gdata-issues/issues/detail?id=3916