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.

Hello all I am developing an application which use facebook api to connect facebook user with my application. I want to show a wall post in register user facebook account when user join my application, but i am using facebook stream.publish method. When I call this function in my home page (www.example.com) then it show a wall popup, but whenever I call this function in my home page (www.example.com/home.php) then pop not showing. Below is my code.

FB.ui(
                {
                    method: 'stream.publish',
                    message: 'Just joined example.com',
                    attachment: {
                        name: 'example.com',
                        caption: 'Just joined example.com to share your beauty secretes',
                        description: ('Large selection of natural skin care products and organic bath and body products from example.com. Articles and information about skincare treatments and conditions.'
                        ),
                        href: 'http://example.com/',
                        media: [
                            {
                                type: 'image',
                                href: 'http://example.com/',
                                src: 'http://example.com/images/stories/blomm.png'
                            }
                        ]
                    },
                    action_links: [
                        {
                            text: 'Code',
                            href: 'http://qexample.com/'
                        }
                    ],
                    user_message_prompt: 'Share your experience with your friends'
                }
           );

Can anyone give me any idea or suggestions for this?

Thanks

share|improve this question

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.