funerr
funerr

Reputation: 8166

Facebook Js FB.ui how can I change the message parameter?

var obj = {
 method: 'feed',
 link: mylinkt,
 picture: 'http://fbrell.com/f8.jpg',
 name: 'Poonkt.us - My new Quote!',
 message: 'Test?', //<<--cant I access this?
 description: desc
};

FB.ui(obj);

Is there any possibility I can change the Facebook feed dialog's message parameter?

Thanks in advance.

Upvotes: 0

Views: 1891

Answers (1)

Dhiraj
Dhiraj

Reputation: 33618

Message is not a parameter according to the docs and it does even show up during the feed

Using api you cannot have a default value in message box

DEMO (the demo is to say that even with a message parameter the feed does not contain any message)

Hope this helps

Upvotes: 1

Related Questions