How to Insert a <a> tag link in a Facebook wall
Posted
by
Diogo Hacka
on Stack Overflow
See other posts from Stack Overflow
or by Diogo Hacka
Published on 2012-06-17T21:12:59Z
Indexed on
2012/06/17
21:16 UTC
Read the original article
Hit count: 248
How can I insert a html link like the 2 posts below with the Facebook iOS SDK?
In Train Conductor and "itunes.apple.com" for The Fleas post they use a bit.ly link.
I tried to use the html tag <a href="www.mystuff.com">
Whatever<\a> but it didn't work.
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"My game in iTunes", @"name",
@"http://www.mystuff.com", @"link",
@"Check out this cool game for iPhone.", @"description",
nil];
This code works but that is just a normal post.
© Stack Overflow or respective owner