From: VirtualTam Date: Sat, 5 Aug 2017 12:30:43 +0000 (+0200) Subject: documentation: add links to example REST API clients X-Git-Tag: v0.9.1~1^2~6^2~2 X-Git-Url: https://git.immae.eu/?p=github%2Fshaarli%2FShaarli.git;a=commitdiff_plain;h=61f63d1086b2181ef92976338e593414199d1275 documentation: add links to example REST API clients Signed-off-by: VirtualTam --- 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); ``` -### Complete examples +## Clients and examples +### Android, Java, Kotlin + +- [Android client example with Kotlin](https://gitlab.com/snippets/1665808) + by [Braincoke](https://github.com/Braincoke) + ### PHP @@ -119,3 +124,11 @@ function getInfo($baseUrl, $secret) { var_dump(getInfo($baseUrl, $secret)); ``` + + +### Python + +See the reference API client: + +- [Documentation](http://python-shaarli-client.readthedocs.io/en/latest/) on ReadTheDocs +- [python-shaarli-client](https://github.com/shaarli/python-shaarli-client) on Github