最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Using the new facebook graph api, ajax calls returns null (empty) - Stack Overflow

programmeradmin0浏览0评论

Im trying out the new graph api for facebook. I'm trying to fetch some data using jquery ajax. This is a sample of my javascript code, very basic...

var mUrl = '';
   $.ajax({
        url: mUrl,
        dataType: 'json',
        success: function(data, status) {
          $('#test').html(data);
          alert(data);

      },
      error: function(data, e1, e2) {
        $('#hello').html(e1);  
      }
   });

The url is to a page that does not need access tokens (try it using a browser), but the success function returns an empty object or null.

What am I doing wrong? Thankful for all help!

Im trying out the new graph api for facebook. I'm trying to fetch some data using jquery ajax. This is a sample of my javascript code, very basic...

var mUrl = 'https://graph.facebook.com/19292868552';
   $.ajax({
        url: mUrl,
        dataType: 'json',
        success: function(data, status) {
          $('#test').html(data);
          alert(data);

      },
      error: function(data, e1, e2) {
        $('#hello').html(e1);  
      }
   });

The url is to a page that does not need access tokens (try it using a browser), but the success function returns an empty object or null.

What am I doing wrong? Thankful for all help!

Share Improve this question asked Jun 29, 2010 at 7:34 Chris SunderlandChris Sunderland 1112 gold badges2 silver badges3 bronze badges 0
Add a comment  | 

4 Answers 4

Reset to default 10

I have covered this and asked this question before. I made a quick tutorial which covers exactly this and explains it all.

In short: JSON is not made for cross domain usage according to its same-origin policy. However the work around is to use JSONP which we can do in jQuery using the supported callback parameter in facebook's graph api. We can do so by adding the parameter onto your url like

https://graph.facebook.com/19292868552?callback=?

by using the callback=? jQuery automatically changes the ? to wrap the json in a function call which then allows jQuery to parse the data successfully.

Also try using $.getJSON method.

I was trying to do something similar, in testing I was able to get a working result which I saved on jsFiddle: http://jsfiddle.net/8R7J8/1/

Script:

var facebookGraphURL = 'https://graph.facebook.com/19292868552';
$.ajax({
    url: facebookGraphURL,
    dataType: 'json',
    success: function(data, status) {
      $( '#output' ).html('Username: ' + data.username);
    },
    error: function(data, e1, e2) {
      $( '#output' ).html(e2);
    }
})

HTML:

<html>
  <body>
    <div id="output">BorkBorkBork</div>
  </body>
</html>

Hope that helps! :)

...The Graph API supports JSONP. Simply pass callback=methodname as an extra parameter and the returned content will be wrapped in a function call, allowing you to use a dynamically inserted script tag to grab that data. http://forum.developers.facebook.com/viewtopic.php?pid=253084#p253084

You can't do cross-domain AJAX requests like that due to the same-origin policy. Instead, use Facebook's JavaScript SDK, which is based on a script tag.

发布评论

评论列表(0)

  1. 暂无评论