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

1.8k views Asked by At
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.

1

There are 1 answers

1
Dhiraj On BEST ANSWER

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