I'm working with the Youtube Data API and I'm trying to retrieve a json feed of videos uploaded with a specific Developer API Key or more preferably with a Developer Tag that is assigned to the videos on upload.

I read the API docs and it said to use this URI: http://gdata.youtube.com/feeds/api/videos?key=dev_key_here&v=2&alt=jsonc

That URL gets 100k videos that aren't mine. I should only be getting one video that was uploaded with that my dev key. Any ideas?

I'm going to using ajax to retrieve this dataset.

link|improve this question
feedback

1 Answer

If you read the API documentation it says that the key is solely used for authentication/identification. If you want to find videos by a user (also your own) then you can use the author parameter for specifying that.

The API documentation for this is here

link|improve this answer
I'm wanting to retrieve videos from potentially thousands of users with a single parameter, such as the hidden developer tag that I can add to the upload without the user knowing. They will be uploading the videos from an iPhone app that has the key and dev tag hardcoded into every upload. – Logan Aug 6 '11 at 22:14
anyone have any insight? – Logan Aug 6 '11 at 23:10
wouldn't be possible to hardcode the username, then you could use author for searching? – Uku Loskit Aug 7 '11 at 11:03
Author is only for YT Partners though and we aren't a YT Partner – Logan Aug 7 '11 at 14:01
anyone have anything? – Logan Aug 11 '11 at 13:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.