I want to post a status update to users wall. This works, but I dont't know how to post a "pretty" Url with it. It works if I post the full Url, but it doesn't looks good.
My Question:
How is it possible to post a pretty url, like HTML it does: < a href="http://example.de">My Example< /a>
My Code:
NSString *facebookStr = [NSString stringWithFormat:@"%@%@ http://example.de", facebookStatusUpdatePrefixStr, self.theStatus];
NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:
facebookStr, @"status",
@"true", @"status_includes_verb",
nil];
[[FBRequest requestWithDelegate:self] call:@"facebook.users.setStatus" params:params];
FBPermissionDialog* dialog = [[[FBPermissionDialog alloc] init] autorelease];
dialog.delegate = self;
dialog.permission = @"status_update";
[dialog show];
Thx