Skip to content
/ api Public

Symfony 4 - API platform with Sonata admin and FOSOAuthServer

Notifications You must be signed in to change notification settings

dodev34/api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Request to get your first access token

/oauth/v2/token?client_id=<client_id>&client_secret=<client_secret>&grant_type=password&username=<username>&password=<password>

Request parameters

client_id:          <your client id>
client_secret:      <your client secret>
grant_type:         password
username:           <your username>
password:           <your password>

Request to refresh token

/oauth/v2/token?grant_type=refresh_token&refresh_token=<refresh_token>&client_id=<client_id>&client_secret=<client_secret>

Request parameters

client_id:          <your client id>
client_secret:      <your client secret>
grant_type:         refresh_token
refresh_token:      <your refresh token>

JSON Response for any request type

{
    "access_token": "xxxxxxxxx",
    "expires_in": 84600,
    "token_type": "bearer",
    "scope": null,
    "refresh_token": "xxxxxxxxx"
}

Request API

In your api queries, specify in the header 'Authorization' type 'Bearer' and the value of the token provided

Bundle for requested Any OAuth service

OAuth bundle client

About

Symfony 4 - API platform with Sonata admin and FOSOAuthServer

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published