1
votes

With reference to this page...

https://developers.google.com/youtube/2.0/developers_guide_protocol_browser_based_uploading#Browser_based_uploading

On point 6 of the very last potion of the page it says...

The user selects his video and submits the form, sending his video and the upload token directly to YouTube. YouTube verifies the token is valid and adds the video to the user's YouTube channel.

By user's YouTube channel does it mean "uploader's" or "site owner's" channel? Should be site owner right?

Also with the V3, How can i do this aswell?

Thanks

1

1 Answers

0
votes

The relevant port of the documentation is

ACCESS_TOKEN - This value contains the authentication token for your request. The token will either be an OAuth 2.0 access token, an OAuth 1.0 access token, a ClientLogin token, an AuthSub single-use token, or an AuthSub session token.

The video will be uploaded into the channel associated with the ACCESS_TOKEN value specified in the Authorization: header.

As per best practices, this should be obtained from the end user via OAuth 2 and not correspond to the site owner's "master" channel.