Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Erro ao utilizar o ConnectApi com variaveis #21

Open
rcaneppele opened this issue Jun 19, 2019 · 0 comments
Open

Erro ao utilizar o ConnectApi com variaveis #21

rcaneppele opened this issue Jun 19, 2019 · 0 comments

Comments

@rcaneppele
Copy link

O seguinte exemplo de código, utilizando variaveis, gera um erro 400:

OAuth auth = new OAuth(semAntecipacao ? oauthTokenSemAntecipacao : oauthTokenComAntecipacao);
Client client = new Client(moipEndpoint, auth);
API api = new API(client);

ConnectRequest connectRequest = new ConnectRequest()
		.clientId(semAntecipacao ? clientIdSemAntecipacao : clientIdComAntecipacao)
		.clientSecret(semAntecipacao ? clientSecretSemAntecipacao : clientSecretComAntecipacao)
		.code(code)
		.redirectUri(semAntecipacao ? redirectUrlSemAntecipacao : redirectUrlComAntecipacao)
		.grantType(GrantType.AUTHORIZATION_CODE);

Connect connect = api.connect().authorize(connectRequest);
String accessToken = connect.getAccessToken();
String idMoip = connect.getMoipAccount().getId();

Passando os valores manualmente funciona sem problemas:

OAuth auth = new OAuth("XXXXXX_v2");
Client client = new Client("https://api.moip.com.br", auth);
API api = new API(client);

ConnectRequest connectRequest = new ConnectRequest()
		.clientId("APP-XXXXXXXXXXXX")
		.clientSecret("XXXXXXXXX")
		.code(code)
		.redirectUri("XXXX")
		.grantType(GrantType.AUTHORIZATION_CODE);

Connect connect = api.connect().authorize(connectRequest);
String accessToken = connect.getAccessToken();
String idMoip = connect.getMoipAccount().getId();

No exemplo das variáveis, elas estão com os valores corretos, igual ao exemplo anterior que passa os valores manualmente.

Isso aconteceu apenas em ambiente de PRODUCAO.
No sandbox funcionou corretamente.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Development

No branches or pull requests

1 participant