[Resolved] Facebook message

When I manually post a facebook message like this:
Playing Kill Red on my iPad!

A puzzle game with lots of fun:

http://itunes.apple.com/app/id458181395?mt=8
… then facebook recognizes the appstore link and retreives and displays the App information inside the message.

When I post the exact same message using Corona, it just displays the message with the appstore link.

Using this (snippet) code to post:

 if fbCommand == POST\_MSG then  
 local postMsg = {  
 message = "Playing Kill Red on my iPad! \n\nA puzzle game with lots of fun:\n\nhttp://itunes.apple.com/app/id458181395?mt=8\n\n"  
 }  
 facebook.request( "me/feed", "POST", postMsg ) -- posting the message  
 end  

Of course i would like facebook to display all the app info, but for some reason it doesn’t.

Any idea what i’m doing wrong?

[import]uid: 50459 topic_id: 26839 reply_id: 326839[/import]

I know you can pass link separately to at least the popup dialogue. worth a shot… something like this

... postMsg= {message="Playing Kill Red on my iPad", link="nhttp://itunes.apple.com/app/id458181395?mt=8"} ... [import]uid: 32462 topic_id: 26839 reply_id: 108961[/import]

That worked flawless, thanks for the tip! [import]uid: 50459 topic_id: 26839 reply_id: 109051[/import]