Reputation: 5465
I have made an Android app that writes your current location to your wall.
When I look at other Facebook-apps I can see a small link just beneath the post that says "Get [app name]".
I mean something like this:
How can I add such a link to my posts?
Upvotes: 2
Views: 984
Reputation: 2227
Use the "Actions" parameter. See the post documentation here: http://developers.facebook.com/docs/reference/api/post
actions
A list of available actions on the post (including commenting, liking, and an optional app-specified action). read_stream. A list of JSON objects containing the 'name' and 'link'.
actions={"name": "View on Zombo", "link": "http://www.zombo.com"}
Upvotes: 4