Facebook Photo Posting

When developing apps in the past via Objective-C and the iPhone SDK the user would login, it’d show what was going to be posted, allow the user to change it a portion of the posting and then they could submit. Is this possible using the Facebook API in Corona?

I used the example to post a photo in my Corona project and it works great! But it just does it without any feedback (I know I can add some but I’d prefer the user gets to preview it).

EDIT: in objective-C I typically use this code (below) to present a box that includes a title, a message that can be edited in the facebook window, as well as a description of what the post is all about that is not editable by the user. Is this not possible in Corona?

NSMutableDictionary\* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:  
@"Share on Facebook", @"user\_message\_prompt",  
@"Some sort of name or title here", @"name",  
@"A long message goes here...", @"message",   
@"http://www.anscamobile.com/", @"link",  
@"A big paragraph description here", @"description",   
  
@"http://www.anscamobile/logo1.png", @"picture", nil];  
  

Thanks,

David [import]uid: 27681 topic_id: 14201 reply_id: 314201[/import]