Skip to content

Instantly share code, notes, and snippets.

@orianmarx
Created December 6, 2012 00:47
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 orianmarx/4220936 to your computer and use it in GitHub Desktop.
Save orianmarx/4220936 to your computer and use it in GitHub Desktop.
App.net Interactions example
$ curl -H "Authorization: BEARER [access token]" "https://alpha-api.app.net/stream/0/users/me/interactions"
{
"data":[
{
"action":"reply",
"objects":[
{
// post object
}
],
"users":[
{
// user object
},
{
// user object
}
]
},
{
"action":"repost",
"objects":[...],
"users":[...]
},
{
"action":"star",
"objects":[...],
"users":[...]
},
{
"action":"follow",
"objects":[...],
"users":[...]
},
],
"meta":[...]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment