facebookfacebook-ui

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.


Solution

  • 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