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