Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
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.

share|improve this question
what do you want to change to – Satya May 17 '12 at 19:36
@Satya, Anything basically, I just want to have some values already present in the message box (editable) in the dialog. – agam360 May 17 '12 at 19:54

1 Answer

up vote 0 down vote accepted

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

share|improve this answer
Can I somehow change it? – agam360 May 17 '12 at 20:05
nothing that I know of – Dhiraj Bodicherla May 18 '12 at 3:58
You can't do something for this, Facebook deprecated the message parameter on July 12th. – Philip May 18 '12 at 6:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.