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 need to make a post to my facebook wall from my windows application. The post must have multiple links embeded within the post content. I can do it using Grap API but the problem is that I cannot specify an anchor text for links. The links themselves are very long so it's absolutly necessary for us to have an anchor text. But it seems facebook does not understand anchor text tags.

I know there is a "link" object but it's not an option because it allows only one "link" object per post.

Is there any way to post multiple links with an anchor text within a single post via Graph API?

Thank you

share|improve this question

4 Answers

up vote 1 down vote accepted

In short, no.

You can use a Link object, in which case you can supply a Message, Title, Description and Caption, but you can't actually hide the link, or display different text on your link - Facebook will always control how your hyperlinks work.

Other messages and Posts are plain text, so you can't use HTML formatting elements either.

It's all done to reduce the potentially hideous display of messages posted to Facebook, and to protect users from disingenuous link texts.

share|improve this answer

You can use Facebook Notes feature instead. Facebook Notes fully support HTML.

share|improve this answer

Facebook notes really support HTML. So yo can post links like this: 03131991saty

share|improve this answer

See this. How spotify have done this if formatting html elements are not allowed.enter image description here

share|improve this answer
2  
Spotify aren't publishing to the user feed, they are using the Open Graph API to achieve this. See here: developers.facebook.com/docs/opengraph/tutorial – hollsk Mar 9 '12 at 12:27

protected by Andrew Barber Aug 23 '12 at 12:58

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.