3

I'm publishing actions to the user's timeline by posting to graph.facebook.com as described in the tutorial in Facebook's documentation.

 FB.api(
        '/me/[YOUR_APP_NAMESPACE]:cook?recipe=http://fbwerks.com:8000/zhen/cookie.html',
        'post',
        function(response) {
           if (!response || response.error) {
              alert('Error occured');
           } else {
              alert('Cook was successful! Action ID: ' + response.id);
           }
        });

However, when Facebook calls my object URL, I'm not receiving all the GET params that I passed through and it looks like Facebook is truncating the URL. Is there a character limit on the size of the object URL? The URL works fine when I put it in the object debugger.

rink.attendant.6
  • 44,500
  • 61
  • 101
  • 156
  • 1
    Great question. I hope one of the Facebook engineers or devs can chime in on any URL limitations. – DMCS Mar 24 '12 at 12:57

0 Answers0