-
Notifications
You must be signed in to change notification settings - Fork 376
Expand file tree
/
Copy pathindex.php
More file actions
38 lines (30 loc) · 1.5 KB
/
index.php
File metadata and controls
38 lines (30 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
$page_title = "OAuth 2.0 Device Code Grant";
$page_section = "";
$page_secondary = "";
$page_meta_description = "The OAuth 2.0 Device Authorization Grant";
require('../../../../includes/_header.php');
?>
<div class="container">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/2/">OAuth 2.0</a></li>
<li class="breadcrumb-item"><a href="/2/grant-types/">Grant Types</a></li>
<li class="breadcrumb-item active">Device Code</li>
</ol>
</nav>
<div>
<h2>OAuth 2.0 Device Authorization Grant</h2>
<p><a href="https://tools.ietf.org/html/rfc8628#section-3.4" class="rfc">tools.ietf.org/html/rfc8628#section-3.4</a></p>
<p>The Device Code grant type is used by browserless or input-constrained devices in the <a href="/2/device-flow/">device flow</a> to exchange a previously obtained device code for an access token.</p>
<p>The Device Code grant type value is <code>urn:ietf:params:oauth:grant-type:device_code</code>.</p>
<p>More resources
<ul>
<li><a href="https://www.oauth.com/oauth2-servers/device-flow/token-request/">Device Flow Token Request</a> (oauth.com)</li>
<li><a href="https://alexbilbie.github.io/2016/04/oauth-2-device-flow-grant/">Device Flow</a> (alexbilbie.github.io)</li>
<li><a href="https://www.oauth.com/playground/device-code.html">Device Code Grant on the OAuth 2.0 Playground</a></li>
</ul>
</p>
</div>
</div>
<?php require('../../../../includes/_footer.php'); ?>