I am creating a quote for an iOS application, and one of the requirements is to be able to upload a movie file (created by the application itself) to a specific youtube channel owned by the client.
So the users of this application will be creating movie content of their own, and then optionally uploading it to a channel owned by the client.
I have been looking over the youtube api, and the examples and documentation appear to be centred around users uploading movies to their own youtube account, thereby requiring that they go through the OAUTH process.
One approach that does seem as if it would work is to have the iOS application upload their movies to a server that we own, and then have that server upload them to youtube.
This feels reasonable, although a little cumbersome and wasteful of bandwidth. Ideally the movies would go straight to the client's channel.
My question is whether this is possible?