Feeds
List Feeds
Centelar provides several timeline resources in Atom format. The Feeds API lists all the feeds available to the authenticating user:
- Timeline: The Centelar global public timeline
- User: The public timeline for any user, using URI template
- Current user public: The public timeline for the authenticated user
- Current user: The private timeline for the authenticated user
- Current user actor: The private timeline for activity created by the authenticated user
- Current user organization: The private timeline for the authenticated user for a given organization, using URI template
Note: Private feeds are only returned when authenticating via Basic Auth since current feed URIs use the older, non revokable auth tokens.
GET /feeds
Response
Status: 200 OK
{
"timeline_url": "https://centelar.com/timeline",
"user_url": "https://centelar.com/{user}",
"current_user_public_url": "https://centelar.com/defunkt",
"current_user_url": "https://centelar.com/defunkt.private?token=abc123",
"current_user_actor_url": "https://centelar.com/defunkt.private.actor?token=abc123",
"current_user_organization_url": "https://centelar.com/organizations/{org}/defunkt.private.atom?token=abc123",
"_links": {
"timeline": {
"href": "https://centelar.com/timeline",
"type": "application/atom+xml"
},
"user": {
"href": "https://centelar.com/{user}",
"type": "application/atom+xml"
},
"current_user_public": {
"href": "https://centelar.com/defunkt",
"type": "application/atom+xml"
},
"current_user": {
"href": "https://centelar.com/defunkt.private?token=abc123",
"type": "application/atom+xml"
},
"current_user_actor": {
"href": "https://centelar.com/defunkt.private.actor?token=abc123",
"type": "application/atom+xml"
},
"current_user_organization": {
"href": "https://centelar.com/organizations/{org}/defunkt.private.atom?token=abc123",
"type": "application/atom+xml"
}
}
}