-
Updated
Jul 11, 2020 - JavaScript
oauth2
Here are 3,421 public repositories matching this topic...
-
Updated
Jul 4, 2020 - Java
-
Updated
Jul 16, 2020 - Go
-
Updated
Jul 1, 2020 - Java
-
Updated
Jul 17, 2020 - Java
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
The links on the FAQ page in the wiki still point to the old wiki, which seems to be deprecated.
-
Updated
Jun 25, 2020 - Java
-
Updated
Jul 15, 2020 - Ruby
-
Updated
Jul 2, 2020 - Java
-
Updated
May 17, 2020 - Java
I pulled all my hair and my face is bloody and I have no clue what I'm doing.
Can someone point me in a direction? I've search Google, Github and Stackoverflow without help.
https://steamcommunity.com/dev
https://steamcommunity.com/openid
I'm using Strapi so I cant take any shortcuts by using something else... :(
-
Updated
Jul 11, 2020 - Swift
-
Updated
Dec 13, 2019 - Go
-
Updated
Jul 16, 2020 - JavaScript
Describe the feature
Ideally the documentation should mention all the datastore models required by the OpenID Connect flows. The current documentation has this section for OAuth2.0 (https://oauthlib.readthedocs.io/en/latest/oauth2/server.html#create-your-datastore-models) but it is missing for OIDC.
-
Updated
Jul 14, 2020 - Python
-
Updated
Jul 14, 2020 - Java
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
Jun 8, 2020 - Java
-
Updated
Jul 17, 2020 - Groovy
-
Updated
May 17, 2020 - Go
Improve this page
Add a description, image, and links to the oauth2 topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the oauth2 topic, visit your repo's landing page and select "manage topics."
I use IdentityServer (v2.5.3) and recently went from code-defined clients to appSettings-defined (see http://docs.identityserver.io/en/3.1.0/topics/clients.html)
In the process I made the mistake of translating
AllowedGrantTypes = GrantTypes.ClientCredentialsinto"AllowedGrantTypes": [ "ClientCredentials" ]when the correct value is"client_credentials".I noticed that: