kush
kush

Reputation: 97

How to upload video on youtube on a specific channel using Xamarin forms for Android and iOS both?

Is there any way to upload video on youtube on a specific channel using Xamarin forms for Android and iOS both?

Upvotes: 0

Views: 119

Answers (1)

Linda Lawton - DaImTo
Linda Lawton - DaImTo

Reputation: 117301

The youtube api has a method called Videos.insert

This is a HTTP Post Request

POST https://www.googleapis.com/upload/youtube/v3/videos

Xamarin forms has the ability to preform HTTP POsts against Rest APIs. Consume a RESTful web service

So I would say yes there is a way to upload videos to YouTube using Xamarin. However that being said the Google .net client library does not support Xamarin login. You will need to code the login yourself but that's doable I did it a few years ago and it only took me a few days to workout a prototype. So i would recommend using the google .net client library for the YouTube api part it will just be easer then making a custom login for the auth part.

Upvotes: 2

Related Questions