Created
December 6, 2012 00:47
-
-
Save orianmarx/4220936 to your computer and use it in GitHub Desktop.
App.net Interactions example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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