austinsmorris / keymaster

An opinionated OAuth 2.0 server for Elixir projects.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

4.2.1 - Authorization Request (Implicit Grant)

austinsmorris opened this issue · comments

Access the authorization endpoint with the following query component requirements:

  • query component is application/x-www-form-urlencoded
  • reponse_type - required parameter, set to token
  • client_id - required paramenter, set to the client id
  • redirect_uri - parameter. Required if client has multiple redirect uris registered. Optional if client has one redirect uri registered. Must match a registered redirect uri if provided.
  • scope - optional parameter, see #10
  • state - recommended paramater - I want to make this required.
  • authorization request is a GET request