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 classCreateOauthCredentialRequest.CreateOauthCredentialRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CreateOauthCredentialRequest.CreateOauthCredentialRequestBuilderbuilder()StringgetClientId()Unique ID that identifies your integration.StringgetClientSecret()Private key to be used in some plugins to generate payments.StringgetCode()The authorization code you get in the authorization url for linking.StringgetGrantType()Specify type of operation to perform to get your credentials.StringgetRedirectUri()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.
-
-