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 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.

share|improve this question
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

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.