Skip to content

Retrieve followers

Onur Akpolat edited this page Nov 1, 2016 · 1 revision

Retrieve followers to display a user who their followers are.

Endpoint

GET https://api.tapglue.com/0.4/me/followers

Example

curl https://api.tapglue.com/0.4/me/followers \
    -u APP_TOKEN:SESSION_TOKEN \
    -H "User-Agent: Tapglue Test UA" \
    -H 'Accept: application/json'

Response

{
  "users": [
    {
      "id_string": "19136842595045509",
      "id": 19136842595045508,
      "custom_id": "1",
      "social_ids": {
        "facebook": "fb12345678"
      },
      "is_friend": false,
      "is_follower": true,
      "is_followed": false,
      "user_name": "Cruz",
      "first_name": "Cruz",
      "last_name": "Karyn",
      "email": "cruz@mail.com",
      "url": "myapp://users/3",
      "metadata": {
        "foo": "bar"
      },
      "images": {
        "avatar": {
          "url": "https://mydomain.com/users/1/avatar.jpg",
          "width": 400,
          "height": 400
        },
        "avatar_thumb": {
          "url": "https://mydomain.com/users/1/avatar_thumb.jpg",
          "width": 150,
          "height": 150
        }
      },
      "enabled": true
    }
  ],
  "users_count": 1
}
Clone this wiki locally