Feeds

List Feeds

Centelar provides several timeline resources in Atom format. The Feeds API lists all the feeds available to the authenticating user:

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"
    }
  }
}