|
@@ -0,0 +1,30 @@
|
|
1
|
+# Redmine Client
|
|
2
|
+
|
|
3
|
+## Usage
|
|
4
|
+
|
|
5
|
+Mettre son token dans le fichier `src/main.rs`
|
|
6
|
+
|
|
7
|
+## Ressources
|
|
8
|
+
|
|
9
|
+### Rust
|
|
10
|
+
|
|
11
|
+#### Examples
|
|
12
|
+
|
|
13
|
+##### Rest API client
|
|
14
|
+
|
|
15
|
+- https://github.com/seanmonstar/reqwest/issues/275
|
|
16
|
+- https://github.com/seanmonstar/reqwest
|
|
17
|
+- https://blog.logrocket.com/best-rust-http-client/
|
|
18
|
+- https://docs.rs/oauth2/latest/oauth2/#importing-oauth2-selecting-an-http-client-interface
|
|
19
|
+- https://blog.logrocket.com/making-http-requests-rust-reqwest/
|
|
20
|
+- https://blog.logrocket.com/jwt-authentication-in-rust/
|
|
21
|
+- https://www.thorsten-hans.com/calling-http-apis-in-rust-with-reqwest/
|
|
22
|
+- https://dev.to/pintuch/rust-reqwest-examples-10ff
|
|
23
|
+
|
|
24
|
+#### Librairies
|
|
25
|
+
|
|
26
|
+- REST API Client :
|
|
27
|
+ - https://rust-lang-nursery.github.io/rust-cookbook/web/clients/apis.html
|
|
28
|
+ - https://auth0.com/blog/build-an-api-in-rust-with-jwt-authentication-using-actix-web/
|
|
29
|
+- REST API Server : https://github.com/spietika/restson-rust
|
|
30
|
+- Web Server : https://github.com/http-rs/tide
|