Skip to content

Instantly share code, notes, and snippets.

@sndrs
Last active January 3, 2016 06:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sndrs/8422836 to your computer and use it in GitHub Desktop.
Save sndrs/8422836 to your computer and use it in GitHub Desktop.
// Will produce 'x is at y' posts
FB.api('/me/feed', 'post', {
access_token: "",
place: "page_id"
}, cb);
// Will create 'x shared a link - at y'
FB.api('/me/feed', 'post', {
access_token: "",
place: "page_id",
link: "",
name: ""
}, cb);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment