Interface DropboxAuth
-
public interface DropboxAuth
Simplified factory to create anOAuth2Auth
for Dropbox.- 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 Dropboxstatic OAuth2Auth
create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Dropbox
-
-
-
Method Detail
-
create
static OAuth2Auth create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for Dropbox- Parameters:
clientId
- the client id given to you by DropboxclientSecret
- the client secret given to you by Dropbox
-
create
static OAuth2Auth create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Dropbox- Parameters:
clientId
- the client id given to you by DropboxclientSecret
- the client secret given to you by DropboxhttpClientOptions
- custom http client options
-
-