Interface LiveAuth
-
public interface LiveAuth
Simplified factory to create anOAuth2Auth
for live.com Services.- Author:
- Paulo Lopes
-
-
Method Summary
Static Methods Modifier and Type Method Description static OAuth2Auth
create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for live.comstatic OAuth2Auth
create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for live.com
-
-
-
Method Detail
-
create
static OAuth2Auth create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for live.com- Parameters:
clientId
- the client id given to you by live.comclientSecret
- the client secret given to you by live.com
-
create
static OAuth2Auth create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for live.com- Parameters:
clientId
- the client id given to you by live.comclientSecret
- the client secret given to you by live.comhttpClientOptions
- custom http client options
-
-