aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/md/REST-API.md
diff options
context:
space:
mode:
authorVirtualTam <virtualtam@flibidi.net>2017-08-05 14:30:43 +0200
committerVirtualTam <virtualtam@flibidi.net>2017-08-05 14:30:43 +0200
commit61f63d1086b2181ef92976338e593414199d1275 (patch)
tree27be7217537936e8fa2b8cb2eeaa26f0dc9a98c4 /doc/md/REST-API.md
parente62486dd6a76fc77f062b81c861eb3ee807b1682 (diff)
downloadShaarli-61f63d1086b2181ef92976338e593414199d1275.tar.gz
Shaarli-61f63d1086b2181ef92976338e593414199d1275.tar.zst
Shaarli-61f63d1086b2181ef92976338e593414199d1275.zip
documentation: add links to example REST API clients
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'doc/md/REST-API.md')
-rw-r--r--doc/md/REST-API.md15
1 files changed, 14 insertions, 1 deletions
diff --git a/doc/md/REST-API.md b/doc/md/REST-API.md
index ad407749..f3f0b17a 100644
--- a/doc/md/REST-API.md
+++ b/doc/md/REST-API.md
@@ -68,7 +68,12 @@ $signature = hash_hmac('sha512', $content, $secret);
68``` 68```
69 69
70 70
71### Complete examples 71## Clients and examples
72### Android, Java, Kotlin
73
74- [Android client example with Kotlin](https://gitlab.com/snippets/1665808)
75 by [Braincoke](https://github.com/Braincoke)
76
72 77
73### PHP 78### PHP
74 79
@@ -119,3 +124,11 @@ function getInfo($baseUrl, $secret) {
119 124
120var_dump(getInfo($baseUrl, $secret)); 125var_dump(getInfo($baseUrl, $secret));
121``` 126```
127
128
129### Python
130
131See the reference API client:
132
133- [Documentation](http://python-shaarli-client.readthedocs.io/en/latest/) on ReadTheDocs
134- [python-shaarli-client](https://github.com/shaarli/python-shaarli-client) on Github