Interface ShopifyAuth
-
public interface ShopifyAuth
Simplified factory to create anOAuth2Auth
for Shopify.- Author:
- Paulo Lopes
-
-
Method Summary
Static Methods Modifier and Type Method Description static OAuth2Auth
create(Vertx vertx, String clientId, String clientSecret, String shop)
Create a OAuth2Auth provider for Shopifystatic OAuth2Auth
create(Vertx vertx, String clientId, String clientSecret, String shop, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Shopify
-
-
-
Method Detail
-
create
static OAuth2Auth create(Vertx vertx, String clientId, String clientSecret, String shop)
Create a OAuth2Auth provider for Shopify- Parameters:
clientId
- the client id given to you by ShopifyclientSecret
- the client secret given to you by Shopifyshop
- your shop name
-
create
static OAuth2Auth create(Vertx vertx, String clientId, String clientSecret, String shop, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Shopify- Parameters:
clientId
- the client id given to you by ShopifyclientSecret
- the client secret given to you by Shopifyshop
- your shop namehttpClientOptions
- custom http client options
-
-