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 am trying to make a Facebook dialogue appear when the user completes an event and so I built this function.

function post_to_wall_popup(){
            FB.init({ apiKey: 'Super Secret API Key' });
            var publish = {
                method: 'stream.publish',
                attachment: {
                    name: 'XYZ',
                    caption: 'caption here',
                    description: ('description'),
                    href: 'url',
                media: [{
                    type: 'image',
                    href: 'url',
                    src: 'xyz.gif'
                }]
                },
                action_links: [{ text: 'XYZ', href: 'url' }]
            };  

            FB.ui(publish,null);


    }

I have tried a few different examples that are supposed to have similar results but on each one all I get is the dialog box with "Loading.." for a split second, then it disappears. Has anyone else ever come across a similar problem?

share|improve this question

1 Answer

Make sure that fb-root is defined & visible.

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.