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.

I'm working with the data api. I want to retrieve data from a specific video. That works with JSON in PHP. But I need to do that in Qt, that's why XML is easier because I have done it before and its implented in Qt itself. QJson, on the other hand, is a third party "plugin".

So I wonder if there is a way that I can get the data in XML instead of JSON?

If not I was thinking of converting the JSON to XML in PHP, then request that link in Qt.

(the json data I want to retrieve in XML)

share|improve this question

1 Answer

up vote 1 down vote accepted

Just remove alt=json from query string

https://gdata.youtube.com/feeds/api/videos/xyF6s6F2tbg?v=2

share|improve this answer
cannot believe that I didn't think of that. I replaced the json with xml never tought to just remove it. Thank you! – Sharpless Oct 4 '12 at 12:08

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.