friendica.knowbility.nl

Friendica API

Overview

Friendica provides the following specific endpoints.

Authentication is the same as described in Using the APIs.

Entities

These endpoints uses the Friendica API entities.

Endpoints

GET api/externalprofile/show

Returns a Contact entity for the provided profile URL.

Parameters

GET api/statuses/public_timeline

Returns a list of public Items posted on this node. Equivalent of the local community page.

Parameters

Unsupported parameters

GET api/statuses/networkpublic_timeline

Returns a list of public Items this node is aware of. Equivalent of the global community page.

Parameters

GET api/statuses/replies

Parameters

Unsupported parameters


GET api/conversation/show

Unofficial Twitter command. It shows all direct answers (excluding the original post) to a given id.

Parameters

Unsupported parameters

GET api/statusnet/conversation

Alias of api/conversation/show.

GET api/statusnet/config

Returns the public Friendica node configuration.

GET api/gnusocial/config

Alias of api/statusnet/config.

GET api/statusnet/version

Returns a fake static StatusNet protocol version.

GET api/gnusocial/version

Alias of api/statusnet/version.


POST api/friendica/activity/[verb]

Add or remove an activity from an item. 'verb' can be one of:

To remove an activity, prepend the verb with "un", eg. "unlike" or "undislike" Attend verbs disable eachother: that means that if "attendyes" was added to an item, adding "attendno" remove previous "attendyes". Attend verbs should be used only with event-related items (there is no check at the moment).

Parameters

Return values

On success: json:

"ok"

xml:

<ok>true</ok>

On error: HTTP 400 BadRequest


GET api/direct_messages

Deprecated Twitter received direct message list endpoint.

Parameters

Unsupported parameters

GET api/direct_messages/all

Returns all Private Messages.

Parameters

GET api/direct_messages/conversation

Returns all replies of a single private message conversation. Returns Private Messages

Parameters

GET api/direct_messages/sent

Deprecated Twitter sent direct message list endpoint. Returns Private Messages.

Parameters

POST/PUT api/direct_messages/new

Deprecated Twitter direct message submission endpoint.

Parameters

POST/DELETE api/direct_messages/destroy

Deprecated Twitter direct message deletion endpoint.

Parameters

Return values

On success:

On error: HTTP 400 BadRequest

GET api/friendica/direct_messages_setseen

Parameters

Return values

On success:

On error:

GET api/friendica/direct_messages_search (GET; AUTH)

Returns Private Messages matching the provided search string.

Parameters

Return values

Returns only tested with JSON, XML might work as well.

On success:

On error:


GET api/friendica/group_show

Return all or a specified group of the user with the containing contacts as array.

Parameters

Return values

Array of:

POST/PUT api/friendica/group_create

Create the group with the posted array of contacts as members.

Parameters

POST data

JSON data as Array like the result of GET api/friendica/group_show:

Return values

Array of:

POST api/friendica/group_update

Update the group with the posted array of contacts as members (post all members of the group to the call; function will remove members not posted).

Parameters

POST data

JSON data as array like the result of GET api/friendica/group_show:

Return values

Array of:

POST/DELETE api/friendica/group_delete

Delete the specified group of contacts; API call need to include the correct gid AND name of the group to be deleted.

Parameters

Return values

Array of:


GET api/friendica/notifications

Return last 50 Notifications for the current user, ordered by date with unseen item on top.

Parameters

none

POST api/friendica/notifications/seen

Set notification as seen.

Parameters

Return values

If the note is linked to an item, returns an Item.

Otherwise, a success status is returned:


GET api/friendica/photo

Returns a Photo.

Parameters

Returns data of a picture with the given resource. If 'scale' isn't provided, returned data include full url to each scale of the photo. If 'scale' is set, returned data include image data base64 encoded.

possibile scale value are:

An image used as profile image has only scale 4-6, other images only 0-3

Return values

json:

    {
        "id": "photo id",
        "created": "date(YYYY-MM-DD HH:MM:SS)",
        "edited": "date(YYYY-MM-DD HH:MM:SS)",
        "title": "photo title",
        "desc": "photo description",
        "album": "album name",
        "filename": "original file name",
        "type": "mime type",
        "height": "number",
        "width": "number",
        "profile": "1 if is profile photo",
        "link": {
            "<scale>": "url to image",
            ...
        },
        // if 'scale' is set
        "datasize": "size in byte",
        "data": "base64 encoded image data"
    }

xml:

    <photo>
        <id>photo id</id>
        <created>date(YYYY-MM-DD HH:MM:SS)</created>
        <edited>date(YYYY-MM-DD HH:MM:SS)</edited>
        <title>photo title</title>
        <desc>photo description</desc>
        <album>album name</album>
        <filename>original file name</filename>
        <type>mime type</type>
        <height>number</height>
        <width>number</width>
        <profile>1 if is profile photo</profile>
        <links type="array">
        <link type="mime type" scale="scale number" href="image url"/>
            ...
        </links>
    </photo>

GET api/friendica/photos/list

Returns the API user's Photo List Items.

Return values

json:

    [
        {
            "id": "resource_id",
            "album": "album name",
            "filename": "original file name",
            "type": "image mime type",
            "thumb": "url to thumb sized image"
        },
        ...
    ]

xml:

    <photos type="array">
        <photo id="resource_id"
        album="album name"
        filename="original file name"
        type="image mime type">
            "url to thumb sized image"
        </photo>
        ...
    </photos>

POST api/friendica/photo/create

Alias of api/friendica/photo/update

POST api/friendica/photo/update

Saves data for the scales 0-2 to database (see above for scale description). Call adds non-public entries to items table to enable authenticated contacts to comment/like the photo. Client should pay attention to the fact that updated access rights are not transferred to the contacts. i.e. public photos remain publicly visible if they have been commented/liked before setting visibility back to a limited group. Currently it is best to inform user that updating rights is not the right way to do this, and offer a solution to add photo as a new photo with the new rights instead.

Parameters

Return values

On success:

On error:

DELETE api/friendica/photo/delete

Deletes a single image with the specified id, is not reversible -> ensure that client is asking user for being sure to do this Sets item table entries for this photo to deleted = 1.

Parameters

Return values

On success:

{
    "result": "deleted",
    "message": "photo with id 'xyz' has been deleted from server."
}

On error:


POST/DELETE api/friendica/photoalbum/delete

Deletes all images with the specified album name, is not reversible -> ensure that client is asking user for being sure to do this.

Parameters

Return values

On success:

{
    "result": "deleted",
    "message": "album 'xyz' with all containing photos has been deleted."
}

On error:

POST/PUT api/friendica/photoalbum/update

Changes the album name to album_new for all photos in album.

Parameters

Return values

On success:

{
    "result": "updated",
    "message":"album 'abc' with all containing photos has been renamed to 'xyz'."
}

On error:


GET api/friendica/profile/show

Returns the Profile data of all profiles or a single profile of the authenticated user.

Parameters

Return values

On success: Array of:

On error: HTTP 403 Forbidden: when no authentication was provided HTTP 400 Bad Request: if given profile_id is not in the database or is not assigned to the authenticated user

General description of profile data in API returns:


GET api/friendica/remoteauth

Similar as /redir, redirects to url after DFRN authentication.

Parameters

Deprecated endpoints