-
Notifications
You must be signed in to change notification settings - Fork 379
Expand file tree
/
Copy pathindex.php
More file actions
49 lines (40 loc) · 1.72 KB
/
Copy pathindex.php
File metadata and controls
49 lines (40 loc) · 1.72 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
39
40
41
42
43
44
45
46
47
48
49
<?php
$page_title = "OAuth Grant Types";
$page_section = "";
$page_secondary = "";
$page_meta_description = "A list of common OAuth grant types";
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 active">Grant Types</li>
</ol>
</nav>
<div>
<h2>OAuth Grant Types</h2>
<p>The OAuth framework specifies several grant types for different use cases, as well as a framework for creating new grant types.</p>
<p>The most common OAuth grant types are listed below.</p>
<ul>
<li><a href="/2/grant-types/authorization-code/">Authorization Code</a></li>
<li><a href="/2/pkce/">PKCE</a></li>
<li><a href="/2/grant-types/client-credentials/">Client Credentials</a></li>
<li><a href="/2/grant-types/device-code/">Device Code</a></li>
<li><a href="/2/grant-types/refresh-token/">Refresh Token</a></li>
</ul>
<p>More resources
<ul>
<li><a href="https://www.udemy.com/course/oauth-2-simplified/?referralCode=B04F59AED67B8DA74FA7">The Nuts and Bolts of OAuth</a> (Video Course) - Aaron Parecki</li>
<li><a href="https://aaronparecki.com/oauth-2-simplified/#authorization">Grant Types</a> (aaronparecki.com)</li>
<li><a href="https://alexbilbie.github.io/guide-to-oauth-2-grants/">A Guide to OAuth 2.0 Grants</a> (alexbilbie.github.io)</li>
</ul>
</p>
<h4>Legacy</h4>
<ul>
<li><a href="/2/grant-types/implicit/">Implicit Flow</a></li>
<li><a href="/2/grant-types/password/">Password Grant</a></li>
</ul>
</div>
</div>
<?php require('../../../includes/_footer.php'); ?>