]> git.immae.eu Git - github/shaarli/Shaarli.git/blame_incremental - doc/md/REST-API.md
Merge pull request #1167 from virtualtam/mkdocs
[github/shaarli/Shaarli.git] / doc / md / REST-API.md
... / ...
CommitLineData
1## Usage and Prerequisites
2
3See the [REST API documentation](http://shaarli.github.io/api-documentation/)
4for a list of available endpoints and parameters.
5
6Please ensure that your server meets the
7[requirements](Server-configuration#prerequisites) and is properly
8[configured](Server-configuration):
9
10- URL rewriting is enabled (see specific Apache and Nginx sections)
11- the server's timezone is properly defined
12- the server's clock is synchronized with
13 [NTP](https://en.wikipedia.org/wiki/Network_Time_Protocol)
14
15The host where the API client is invoked should also be synchronized with NTP,
16see [token expiration](#payload).
17
18## Authentication
19
20All requests to Shaarli's API must include a JWT token to verify their authenticity.
21
22This token has to be included as an HTTP header called `Authentication: Bearer <jwt token>`.
23
24JWT resources :
25
26- [jwt.io](https://jwt.io) (including a list of client per language).
27- RFC : https://tools.ietf.org/html/rfc7519
28- https://float-middle.com/json-web-tokens-jwt-vs-sessions/
29- HackerNews thread: https://news.ycombinator.com/item?id=11929267
30
31
32### Shaarli JWT Token
33
34JWT tokens are composed by three parts, separated by a dot `.` and encoded in base64:
35
36```
37[header].[payload].[signature]
38```
39
40#### Header
41
42Shaarli only allow one hash algorithm, so the header will always be the same:
43
44```json
45{
46 "typ": "JWT",
47 "alg": "HS512"
48}
49```
50
51Encoded in base64, it gives:
52
53```
54ewogICAgICAgICJ0eXAiOiAiSldUIiwKICAgICAgICAiYWxnIjogIkhTNTEyIgogICAgfQ==
55```
56
57#### Payload
58
59**Token expiration**
60
61To avoid infinite token validity, JWT tokens must include their creation date
62in UNIX timestamp format (timezone independent - UTC) under the key `iat` (issued at).
63This token will be valid during **9 minutes**.
64
65```json
66{
67 "iat": 1468663519
68}
69```
70
71See [RFC reference](https://tools.ietf.org/html/rfc7519#section-4.1.6).
72
73
74#### Signature
75
76The signature authenticate the token validity. It contains the base64 of the header and the body, separated by a dot `.`, hashed in SHA512 with the API secret available in Shaarli administration page.
77
78Signature example with PHP:
79
80```php
81$content = base64_encode($header) . '.' . base64_encode($payload);
82$signature = hash_hmac('sha512', $content, $secret);
83```
84
85
86## Clients and examples
87### Android, Java, Kotlin
88
89- [Android client example with Kotlin](https://gitlab.com/snippets/1665808)
90 by [Braincoke](https://github.com/Braincoke)
91
92### Javascript, NodeJS
93
94- [shaarli-client](https://www.npmjs.com/package/shaarli-client)
95 ([source code](https://github.com/laBecasse/shaarli-client))
96 by [laBecasse](https://github.com/laBecasse)
97
98### PHP
99
100This example uses the [PHP cURL](http://php.net/manual/en/book.curl.php) library.
101
102```php
103<?php
104$baseUrl = 'https://shaarli.mydomain.net';
105$secret = 'thats_my_api_secret';
106
107function base64url_encode($data) {
108 return rtrim(strtr(base64_encode($data), '+/', '-_'), '=');
109}
110
111function generateToken($secret) {
112 $header = base64url_encode('{
113 "typ": "JWT",
114 "alg": "HS512"
115 }');
116 $payload = base64url_encode('{
117 "iat": '. time() .'
118 }');
119 $signature = base64url_encode(hash_hmac('sha512', $header .'.'. $payload , $secret, true));
120 return $header . '.' . $payload . '.' . $signature;
121}
122
123
124function getInfo($baseUrl, $secret) {
125 $token = generateToken($secret);
126 $endpoint = rtrim($baseUrl, '/') . '/api/v1/info';
127
128 $headers = [
129 'Content-Type: text/plain; charset=UTF-8',
130 'Authorization: Bearer ' . $token,
131 ];
132
133 $ch = curl_init($endpoint);
134 curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
135 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
136 curl_setopt($ch, CURLOPT_AUTOREFERER, 1);
137 curl_setopt($ch, CURLOPT_FRESH_CONNECT, 1);
138
139 $result = curl_exec($ch);
140 curl_close($ch);
141
142 return $result;
143}
144
145var_dump(getInfo($baseUrl, $secret));
146```
147
148
149### Python
150
151See the reference API client:
152
153- [Documentation](http://python-shaarli-client.readthedocs.io/en/latest/) on ReadTheDocs
154- [python-shaarli-client](https://github.com/shaarli/python-shaarli-client) on Github