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