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 want to know how to fetch the JSON data using YQL.

This is my JSON URL:

https://www.facebook.com/feeds/page.php?id=397319800348866&format=json
share|improve this question
3  
what have you tried? – TommyBs Dec 19 '12 at 8:26
developer.yahoo.com/yql/console in here .i don't know how to use it – sami Dec 19 '12 at 8:27

closed as not a real question by Alexander, Rory McCrossan, stusmith, RivieraKid, ArsenMkrt Dec 19 '12 at 12:48

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 5 down vote accepted

Heres a quick example using jQuery, it might help you out

$(function () {
    $.ajax({
        url: "http://query.yahooapis.com/v1/public/yql",
        dataType: "jsonp",
        success: function (data) {
            console.log(data.query.results.json);
            $.each(data.query.results.json.entries, function (i, v) {
                //console.log(data.query.results.json.entries[i]);
                $('#entries').append(data.query.results.json.entries[i].title + '<br />');
            });
        }, data: {
            q: 'select * from json where url="https://www.facebook.com/feeds/page.php?id=397319800348866&format=json"',
            format: "json"
        }
    });
});

Inside the console.log with the above url I was able to get back the following results:

entries: Array[29]
icon: "http://www.facebook.com/favicon.ico"
link: "http://www.facebook.com/"
self: "https://www.facebook.com/feeds/page.php?id=397319800348866&format=json"
title: "Doers Inc's Facebook Wall"
updated: "2012-12-19T01:08:44-08:00"

Working example for reference: http://jsfiddle.net/DtNxb/1/

share|improve this answer
is it working ? no – sami Dec 19 '12 at 9:14
The result only show up if you look at them in your browsers console. – Steven Farley Dec 19 '12 at 9:15
can you correct it work with the html output ? – sami Dec 19 '12 at 9:17
2  
+1 Excellent answer! – arttronics Dec 19 '12 at 9:19
I updated it to show you the entries titles. You should be able to figure the rest out from there – Steven Farley Dec 19 '12 at 9:21
show 4 more comments

It's easier than you think if you use jQuery.getJSON.

Try this:

$.getJSON("http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20html%20where%20url%3D%22your_url&format=json",
          function(data) {
              var id = data.query.results.div;
              $('#table').append('<li>'+id.h1+'</li>');
              $('#table').listview('refresh');
          }
);

A simple demo here

share|improve this answer
Thanks @arttronics :) – Palash Mondal Dec 19 '12 at 9:18
what about my given url ? can you make a fiddle using my given url ? – sami Dec 19 '12 at 9:20
@sami: Steven Farley has already done that... – Palash Mondal Dec 19 '12 at 9:23
1  
@arttronics: Yes, if the URL includes the string "callback=?" in the URL, the request is treated as JSONP instead. Here's an example – Palash Mondal Dec 19 '12 at 9:29
1  
Glad it helped :) – Palash Mondal Dec 19 '12 at 10:18

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