Skip to content

Instantly share code, notes, and snippets.

@sndrs
Last active January 3, 2016 06:29
Show Gist options
  • 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