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