0
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.

funerr
  • 7,212
  • 14
  • 81
  • 129

1 Answers1

1

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

Dhiraj
  • 33,140
  • 10
  • 61
  • 78