Package com.mercadopago.client.oauth
Class CreateOauthCredentialRequest
- java.lang.Object
-
- com.mercadopago.client.oauth.CreateOauthCredentialRequest
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CreateOauthCredentialRequest.CreateOauthCredentialRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CreateOauthCredentialRequest.CreateOauthCredentialRequestBuilder
builder()
String
getClientId()
Unique ID that identifies your integration.String
getClientSecret()
Private key to be used in some plugins to generate payments.String
getCode()
The authorization code you get in the authorization url for linking.String
getGrantType()
Specify type of operation to perform to get your credentials.String
getRedirectUri()
This is the URL you set up in the Redirect URL field in your application.
-
-
-
Method Detail
-
builder
public static CreateOauthCredentialRequest.CreateOauthCredentialRequestBuilder builder()
-
getGrantType
public String getGrantType()
Specify type of operation to perform to get your credentials. This is a fixed parameter with an authorization_code value.
-
getClientSecret
public String getClientSecret()
Private key to be used in some plugins to generate payments. You can get it in Your credentials.
-
getClientId
public String getClientId()
Unique ID that identifies your integration. You can get it in Your credentials.
-
getCode
public String getCode()
The authorization code you get in the authorization url for linking.
-
getRedirectUri
public String getRedirectUri()
This is the URL you set up in the Redirect URL field in your application.
-
-