public interface AmazonCognitoAuth extends OpenIDConnectAuth
OAuth2Auth
for Amazon Cognito.Modifier and Type | Method and Description |
---|---|
static OAuth2Auth |
create(Vertx vertx,
String region,
String clientId,
String clientSecret,
String guid)
Create a OAuth2Auth provider for Amazon Cognito
|
static OAuth2Auth |
create(Vertx vertx,
String region,
String clientId,
String clientSecret,
String userPoolId,
HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Amazon Cognito
|
static Future<OAuth2Auth> |
discover(Vertx vertx,
OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.
|
static void |
discover(Vertx vertx,
OAuth2Options config,
Handler<AsyncResult<OAuth2Auth>> handler)
Create a OAuth2Auth provider for OpenID Connect Discovery.
|
static OAuth2Auth create(Vertx vertx, String region, String clientId, String clientSecret, String guid)
region
- the region to useclientId
- the client id given to you by Amazon CognitoclientSecret
- the client secret given to you by Amazon Cognitoguid
- the guid of your application given to you by Amazon Cognitostatic OAuth2Auth create(Vertx vertx, String region, String clientId, String clientSecret, String userPoolId, HttpClientOptions httpClientOptions)
region
- the region to useclientId
- the client id given to you by Amazon CognitoclientSecret
- the client secret given to you by Amazon CognitouserPoolId
- the userPoolId of your application given to you by Amazon CognitohttpClientOptions
- custom http client optionsstatic void discover(Vertx vertx, OAuth2Options config, Handler<AsyncResult<OAuth2Auth>> handler)
If the discovered config includes a json web key url, it will be also fetched and the JWKs will be loaded into the OAuth provider so tokens can be decoded.
discover
in interface OpenIDConnectAuth
vertx
- the vertx instanceconfig
- the initial confighandler
- the instantiated Oauth2 provider instance handlerstatic Future<OAuth2Auth> discover(Vertx vertx, OAuth2Options config)
If the discovered config includes a json web key url, it will be also fetched and the JWKs will be loaded into the OAuth provider so tokens can be decoded.
discover
in interface OpenIDConnectAuth
vertx
- the vertx instanceconfig
- the initial configdiscover(Vertx, OAuth2Options, Handler)
Copyright © 2022 Eclipse. All rights reserved.