]> git.mxchange.org Git - friendica.git/commitdiff
API: Support for the conversation api call from GNU Social
authorMichael Vogel <icarus@dabo.de>
Wed, 23 Mar 2016 09:24:01 +0000 (10:24 +0100)
committerMichael Vogel <icarus@dabo.de>
Wed, 23 Mar 2016 09:24:01 +0000 (10:24 +0100)
doc/api.md
include/api.php

index bf287585d3fde8c4be8b44ceec3cee2d6b461103..7d6f440c58c0008ecbaf909048c194f1b09c52ff 100644 (file)
@@ -388,6 +388,18 @@ Friendica doesn't allow showing friends of other users.
 ---\r
 ### statusnet/config (*)\r
 \r
+---\r
+### statusnet/conversation (*; AUTH)\r
+It shows all direct answers (excluding the original post) to a given id.\r
+\r
+#### Parameter\r
+* id: id of the post\r
+* count: Items per page (default: 20)\r
+* page: page number\r
+* since_id: minimal id\r
+* max_id: maximum id\r
+* include_entities: "true" shows entities for pictures and links (Default: false)\r
+\r
 ---\r
 ### statusnet/version (*)\r
 \r
index 699b066d25e1bec6fc9bfe448ec32238bd34b1c4..a494e3cdd9ea23f704f91d7ae8a457e36371cbdf 100644 (file)
                return api_apply_template("timeline", $type, $data);
        }
        api_register_func('api/conversation/show','api_conversation_show', true);
+       api_register_func('api/statusnet/conversation','api_conversation_show', true);
 
 
        /**