There is a requirement to post messages from our website. I am using the below code for achieving the same.
http://www.facebook.com/dialog/feed?app_id=123050457758183&source =www.google.com& link=www.google.com&picture=http://fbrell.com/f8.jpg& name=Facebook%20Dialogs& caption=Reference%20Documentation& description=Using%20Dialogs%20to%20interact%20with%20users& message=Facebook%20Dialogs%20are%20so%20easy!& redirect_uri=http://www.example.com/response
Everything is working fine. I want to add a URL like "For more information click here - www.somesite.com". I tried to put href in the description body but Facebook does not recognize it as a link. We have both iOS and HTML5 application and in iOS, it is possible to put link in Description. So was wondering why javascript does not support this.
The below code does the same in iOS.
NSDictionary *propertyValue = [NSDictionary dictionaryWithObjectsAndKeys:@"[(www.somesite.com)]",@"text",@"http://www.somesite.com",@"href", nil];
NSDictionary *properties = [NSDictionary dictionaryWithObjectsAndKeys:propertyValue, @"For more information click here",nil];
Any solution for this?