Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my current free-time project I am trying to fetch all songs from a given album.

Anyone, in Yahoo YQL, how is it possible to list all tracks of a given Release id?

share|improve this question
what's the URL you're processing? – Mauricio Scheffer Jan 7 '11 at 0:56
Not quite sure I understand ur question, I am looking for something like this:developer.yahoo.com/yql/console/?q=select%20*%20from%20music.video.p‌​opular&env=store://datatables.org/alltableswithkeys#h=select%20*%20from%20music.t‌​rack.id%20where%20ids%3D%22745816%22 where the listing would be all tracks for a album id – Muleskinner Jan 7 '11 at 1:09

1 Answer

up vote 2 down vote accepted

You can influence what is returned as part of the results of queries to the music.release.id table by specifying a response value. In this case, you want track information for a release, so ask for tracks.

select * from music.release.id where ids="148083" and response="tracks"

Also see the Release Service and Release List responses documentations.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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