Skip to content

Commit

Permalink
Merge pull request #299 from SawamiWataru/Issue-287
Browse files Browse the repository at this point in the history
Support OpenID Connect.
  • Loading branch information
SawamiWataru authored Dec 27, 2018
2 parents 2589d07 + 94ef50c commit 9eb5837
Show file tree
Hide file tree
Showing 6 changed files with 409 additions and 134 deletions.
10 changes: 10 additions & 0 deletions src/main/java/io/personium/core/auth/OAuth2Helper.java
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,16 @@ public static class ResponseType {
public static final String TOKEN = "token";
/** code. */
public static final String CODE = "code";
/** id_token. It is used with the openid connect of the oauth2 extension. */
public static final String ID_TOKEN = "id_token";
}

/**
* Literal on Scope.
*/
public static class Scope {
/** openid. It is used with the openid connect of the oauth2 extension. */
public static final String OPENID = "openid";
}

/**
Expand Down
Loading

0 comments on commit 9eb5837

Please sign in to comment.