1

I am working with youtube API and want to upload the video on youtube on my own channel. I am using the Youtube intents but this intent open the youtube application and the user logged in on that application can upload on his/her own account's channel. I want that the video is uploaded on my own channel. I have seen these questions on SO but still unclear.

Is it possible to upload videos on specific channel through youtube API?

How to Upload videos to my channel on you tube from android?

Can I do this or not using Youtube API?

Community
  • 1
  • 1

1 Answers1

0

As stated in this link you provided, you need OAuth2 to upload videos in your own channel. Your application directs the user to Google's authorization server. The link to that page specifies the scope of access that your application is requesting for the user's account. The scope specifies the resources that your application can retrieve, insert, update, or delete when acting as the authenticated user.

These links might also help: Displaying Youtube Videos From Specific Channel and Youtube API : Upload videos to a specific channel

Community
  • 1
  • 1
abielita
  • 13,147
  • 2
  • 17
  • 59
  • can you provide any working example? i want all the users upload on my channel . currenty i can only make them upload on there channel and get video link. – Manohar Aug 22 '17 at 11:21