Sunday, July 3, 2011

Edit the link name on your post.


Our latest version now supports the addition of an action to a post that allows you to control the name of the link that is displayed to the FB user.  You can only add one action item and this is the format to use.

Dim
P As New Post
P.name = "test name"
P.message = "test message"
P.link = "cnn.com"
P.caption = "test caption"

Dim A As New ActionObj
A.name = "Comment Now"
A.link = "http://www.cnn.com"
P.actions.Add(A)
Posts.PublishCreate("me", P)