Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
5838d1ba
Commit
5838d1ba
authored
Sep 28, 2016
by
Valery Sizov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a confusion in OAuth2 documentation
parent
f4ded8a8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
doc/api/oauth2.md
doc/api/oauth2.md
+11
-11
No files found.
doc/api/oauth2.md
View file @
5838d1ba
# GitLab as an OAuth2
client
# GitLab as an OAuth2
provider
This document covers using the OAuth2 protocol to access GitLab.
This document covers using the OAuth2 protocol to access GitLab.
...
@@ -112,7 +112,7 @@ You can do POST request to `/oauth/token` with parameters:
...
@@ -112,7 +112,7 @@ You can do POST request to `/oauth/token` with parameters:
{
{
"grant_type" : "password",
"grant_type" : "password",
"username" : "user@example.com",
"username" : "user@example.com",
"password" : "se
k
ret"
"password" : "se
c
ret"
}
}
```
```
...
@@ -130,7 +130,7 @@ For testing you can use the oauth2 ruby gem:
...
@@ -130,7 +130,7 @@ For testing you can use the oauth2 ruby gem:
```
```
client = OAuth2::Client.new('the_client_id', 'the_client_secret', :site => "http://example.com")
client = OAuth2::Client.new('the_client_id', 'the_client_secret', :site => "http://example.com")
access_token = client.password.get_token('user@example.com', 'se
k
ret')
access_token = client.password.get_token('user@example.com', 'se
c
ret')
puts access_token.token
puts access_token.token
```
```
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment