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