4

Anyone one tell me where can I find tutorials to teach me how to use GData to upload a video to youtube from my iOS app?

tommi
  • 6,883
  • 8
  • 37
  • 60

1 Answers1

8

You can find a well written example from creators' page of GData for Objective C. You just need to download the latest source from his project svn (Just type this code on your terminal application)

svn checkout http://gdata-objectivec-client.googlecode.com/svn/trunk/ ~/Desktop/gdata-objectivec

and search inside ~/Desktop/gdata-objectivex/Examples/YoutubeSample. In this directory there is a project implementing login with Oauth2, upload of a video and more operations.

This is the basic, I also suggest you to read the general API from youtube here http://code.google.com/apis/youtube/overview.html.

Giuseppe
  • 6,666
  • 2
  • 20
  • 32