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