I am developing an iPhone application. This app supports a feature where the user can upload a video to a common static Youtube account which is shared by all the app users. When the app receives an upload request, it internally logs-in to the common Youtube account and uploads the video.
As per my understanding OAuth
is the secure way to login to any site compared to non-Oauth. Since only the app knows the user-name and password, a login dialog (UIWebView
with user-name and password fields) should not be prompted to the user.
Is there any mechanism available in GData framework that supports OAuth authentication without prompting the user for user-name and password ( i.e OAuth authentication with hard-coded user name and password.
Any solution please suggest.