aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/howto_app.html.twig
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/howto_app.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/howto_app.html.twig32
1 files changed, 13 insertions, 19 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/howto_app.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/howto_app.html.twig
index 2db15b16..497bb308 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/howto_app.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/howto_app.html.twig
@@ -2,6 +2,11 @@
2 2
3{% block title %}{% trans %}How to create my first application{% endtrans %}{% endblock %} 3{% block title %}{% trans %}How to create my first application{% endtrans %}{% endblock %}
4 4
5{% block css %}
6 {{ parent() }}
7 <link rel="stylesheet" href="{{ asset('bundles/wallabagcore/themes/_global/css/prism.css') }}">
8{% endblock %}
9
5{% block content %} 10{% block content %}
6<div class="row"> 11<div class="row">
7 <div class="col s12"> 12 <div class="col s12">
@@ -13,22 +18,16 @@
13 <p>To create this token, you need <a href="{{ path('create_client') }}">to create a new client</a>.</p> 18 <p>To create this token, you need <a href="{{ path('create_client') }}">to create a new client</a>.</p>
14 <p>Now, create your token (replace client_id, client_secret, username and password with the good values):</p> 19 <p>Now, create your token (replace client_id, client_secret, username and password with the good values):</p>
15 <p> 20 <p>
16 <code> 21 <pre><code class="language-bash">http POST http://v2.wallabag.org/oauth/v2/token \
17 <pre>
18http POST http://v2.wallabag.org/oauth/v2/token \
19 grant_type=password \ 22 grant_type=password \
20 client_id=12_5um6nz50ceg4088c0840wwc0kgg44g00kk84og044ggkscso0k \ 23 client_id=12_5um6nz50ceg4088c0840wwc0kgg44g00kk84og044ggkscso0k \
21 client_secret=3qd12zpeaxes8cwg8c0404g888co4wo8kc4gcw0occww8cgw4k \ 24 client_secret=3qd12zpeaxes8cwg8c0404g888co4wo8kc4gcw0occww8cgw4k \
22 username=yourUsername \ 25 username=yourUsername \
23 password=yourPassw0rd 26 password=yourPassw0rd</code></pre>
24 </pre>
25 </code>
26 </p> 27 </p>
27 <p>The API will return a response like this:</p> 28 <p>The API will return a response like this:</p>
28 <p> 29 <p>
29 <code> 30 <pre><code class="language-bash">HTTP/1.1 200 OK
30 <pre>
31HTTP/1.1 200 OK
32Cache-Control: no-store, private 31Cache-Control: no-store, private
33Connection: close 32Connection: close
34Content-Type: application/json 33Content-Type: application/json
@@ -44,25 +43,20 @@ X-Powered-By: PHP/5.5.9-1ubuntu4.13
44 "refresh_token": "ODBjODU1NWUwNmUzZTBkNDQ5YWVlZTVlMjQ2Y2I0OWM2NTM1ZGM2M2Y3MDhjMTViM2U2MzYxYzRkMDk5ODRlZg", 43 "refresh_token": "ODBjODU1NWUwNmUzZTBkNDQ5YWVlZTVlMjQ2Y2I0OWM2NTM1ZGM2M2Y3MDhjMTViM2U2MzYxYzRkMDk5ODRlZg",
45 "scope": null, 44 "scope": null,
46 "token_type": "bearer" 45 "token_type": "bearer"
47} 46}</code></pre>
48 </pre>
49 </code>
50 </p> 47 </p>
51 <p>The access_token is useful to do a call to the API endpoint. For example:</p> 48 <p>The access_token is useful to do a call to the API endpoint. For example:</p>
52 <p> 49 <p>
53 <code> 50 <pre><code class="language-bash">http GET http://v2.wallabag.org/api/entries.json \
54 <pre> 51 "Authorization:Bearer ZWFjNjA3ZWMwYWVmYzRkYTBlMmQ3NTllYmVhOGJiZDE0ZTg1NjE4MjczOTVlNzM0ZTRlMWQ0MmRlMmYwNTk5Mw"</code></pre>
55http GET http://v2.wallabag.org/api/entries.json \
56 "Authorization:Bearer ZWFjNjA3ZWMwYWVmYzRkYTBlMmQ3NTllYmVhOGJiZDE0ZTg1NjE4MjczOTVlNzM0ZTRlMWQ0MmRlMmYwNTk5Mw"
57 </pre>
58 </code>
59 </p> 52 </p>
60 <p>This call will return all the entries for your user.</p> 53 <p>This call will return all the entries for your user.</p>
61 <p>If you want to see all the API endpoints, you can have a look <a href="{{ path('nelmio_api_doc_index') }}">to our API documentation</a>.</p> 54 <p>If you want to see all the API endpoints, you can have a look <a href="{{ path('nelmio_api_doc_index') }}">to our API documentation</a>.</p>
62 <p><a class="waves-effect waves-light btn" href="{{ path('developer') }}">Back to Developer main page</a></p> 55 <p><a href="{{ path('developer') }}" class="waves-effect waves-light grey btn">{% trans %}Back{% endtrans %}</a></p>
63 </div> 56 </div>
64 57
65 </div> 58 </div>
66 </div> 59 </div>
67</div> 60</div>
61 <script src="{{ asset('bundles/wallabagcore/themes/_global/js/prism.js') }}"></script>
68{% endblock %} 62{% endblock %}