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.

The question should be self-explanatory. I want to return this in XML/JSON format.

share|improve this question

1 Answer

AFAIK there isn't; but it shouldn't be terribly hard to write a function that will do it from a standard playlist feed. For example, in Python you can do something like this:

from lxml import etree
from random import choice
import urllib2

ATOM='{http://www.w3.org/2005/Atom}'
feed=etree.fromstring(urllib2.urlopen("[feedURL]").read())
entries=feed.findall(ATOM+'entry')
random_vid=choice(entries)
links=random_vid.findall(ATOM+'link')
for link in links:
 if link.get('rel')=='alternate':
  vid_url=link.get('href')

print vid_url

Whatever language you're employing ought to be able to do it just as quickly.

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.