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.

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

share|improve this question

1 Answer

If you're going to use the old REST API (now deprecated), you should try the links.post method. It will allow you to add a comment to the link. It will pull the title from the page itself, and it allows you to specify an image to go along with the link.

If possible, you should really use the new Graph API. It's a much cleaner interface, and it gives you a lot of flexibility while publishing a post with a link.

share|improve this answer

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.