Get the activity feed. Requires authentication for the friends and tracking tabs.
Parameters
Output
application/jsonactivities
array
Required
No description available.
hasMore
boolean
Required
No description available.
page
integer
Optional
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"activities",
"hasMore"
],
"properties": {
"page": {
"type": "integer"
},
"hasMore": {
"type": "boolean"
},
"activities": {
"type": "array",
"items": {
"ref": "buzz.bookhive.getFeed#feedActivity",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"tab": {
"type": "string",
"description": "Which feed tab to show. Defaults to friends.",
"knownValues": [
"friends",
"all",
"tracking"
]
},
"page": {
"type": "integer",
"default": 1,
"minimum": 1,
"description": "Page number for pagination"
},
"limit": {
"type": "integer",
"default": 25,
"maximum": 50,
"minimum": 1
}
}
},
"description": "Get the activity feed. Requires authentication for the friends and tracking tabs."
}