oauth2-server
Here are 344 public repositories matching this topic...
So I'm extremely confused about what I should use when instantiating AuthorizationServer
object.
So the documentation directs people to generate public and private keys and then literally says:
The authorization server also requires the public key.
But then this commit removes the public key from the AuthorizationServer
code:
[76
-
Updated
Jun 19, 2020 - Ruby
The documentation recommends using authorization
grant type to register user. I tried this flow but in Authorization Handler it's default action is to authenticate client before authorizing which doesn't make sense see https://github.com/oauthjs/node-oauth2-server/blob/e1f741fdad191ee47e7764b80a8403c1ea2804d4/lib/handlers/authorize-handler.js#L87
However I found a workaround on line https://g
If not for some particular exceptions, the status code returned from our WebAPI on error is always 500, regardless of the kind of error.
If an object already exists, for example, it should be returned as 409
. If the object does not pass the schema validation, it should be a 415
.
Go through the whole WebAPI and verify that the status codes are being returned correctly.
Hint: Error
cl
authlib contains pretty much all you need to implement JWT token validation. It would be nice if there was a simple default one provided. I'm not sure how many moving parts it would have. If no single validator would cover 80% of cases, maybe provide more docs on how to assemble one.
@lepture If you have a general idea of how you would like to see this implemented I would probably be able to do
-
Updated
May 17, 2020 - Go
https://tools.ietf.org/html/rfc6749#section-4.1.1
States that the redirect_uri is OPTIONAL
The server returns an error when redirect_uri
is omitted. https://github.com/go-oauth2/oauth2/blob/master/server/server.go#L152
redirectURI := r.FormValue("redirect_uri")
clientID := r.FormValue("client_id")
if !(r.Method == "GET" || r.Method == "POST") ||
clientID == "" ||
re
-
Updated
Oct 10, 2019 - Python
-
Updated
Jun 2, 2020 - PHP
-
Updated
Jun 1, 2020 - Python
-
Updated
May 16, 2020 - Java
-
Updated
Jan 9, 2020 - Java
-
Updated
Jun 18, 2020 - Java
-
Updated
Apr 24, 2020 - Vue
Documentation
If
- You have some questions
- You had a problem with setup
- You had a problem with configuration
- You don't know how to do something
- Have ideas or propositions
- Think something could be explained better/in more details
Let me know so I can update documentation, allowing other ppl get over same issues faster.
Please comme
-
Updated
Jun 19, 2020 - C
-
Updated
Feb 12, 2020 - JavaScript
-
Updated
Jun 19, 2020 - Ruby
-
Updated
Apr 9, 2020 - PHP
-
Updated
Sep 22, 2019 - JavaScript
-
Updated
May 30, 2017 - Python
-
Updated
Feb 23, 2020 - Elixir
-
Updated
May 20, 2020 - Go
-
Updated
Jun 7, 2020 - TypeScript
-
Updated
Apr 30, 2020 - Java
Last changes allow to create form login on authorization endpoint.
It might be unclear how to do it. This could be added to documentation.
How to use?
-
Updated
Oct 29, 2019 - JavaScript
Improve this page
Add a description, image, and links to the oauth2-server topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the oauth2-server topic, visit your repo's landing page and select "manage topics."
Is your feature request related to a problem? Please describe.
When querying the Clients/Consent Sessions using pagination, ORY Hydra will only return results with some links, but not the total count of the items, which is useful to display in the frontend, you know, showing the total pages or something.
Describe the solution you'd like
Add the
total_count
parameter into Hea