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 have a bug while using FB.ui, although I'm doing everything by the book.
I want to a button so users can share the page on their wall.
When I click the button, I get a facebook popup window that says:
An error occurred, Please try again later.

Can you see what's wrong?
Thanks!

Here's my code:

<script type="text/javascript" src="http://connect.facebook.net/en_US/all.js"></script>
<script>
FB.init
({
    appId:'MYAPPID', 
    status:true, 
    cookie: true, 
    xfbml:true
});
function shareProject2()
{
     FB.ui(
               {
                 method: 'feed',
                 name: 'Facebook Dialogs',
                 link: 'http://developers.facebook.com/docs/reference/dialogs/',
                 picture: 'http://fbrell.com/f8.jpg',
                 caption: 'Reference Documentation',
                 description: 'Dialogs provide a simple, consistent interface for applications to interface with users.',
                 message: 'Facebook Dialogs are easy!'
               },
               function(response) {
                 if (response && response.post_id) {
                   getPermission();
                 } else {
                   alert('Post was not published.');
                 }
               });
     return false;
} 


</script>

<a href="#" onclick="shareProject2();" >Share</a>
share|improve this question
You shouldn't be setting the message parameter - this should be done by a user. Facebook Platform Policy – jBit Jul 28 '11 at 10:59

1 Answer

Have you tried passing the session from the server to the client JavaScript

This would be done in php as:

<?php
require 'facebook.php';

$facebook = new Facebook(array(
    'appId' => $appId,   // Your App Id
    'secret' => $secret, // Your App Secret
    'cookie' => true,
));

$session = $facebook->getSession();
?>

<script>
    FB.init
    ({
        appId:'MYAPPID',<?php
        echo (!empty($session)) ? 'session: ' . json_encode($session) . ',' : '' ?>
        status:true, 
        cookie: true, 
        xfbml:true
    });

...

</script>
share|improve this answer

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.