[X] Have you included sample input, output, error, and expected output?
[X] Have you checked if you are using correct configuration?
Describe the bug
The internal call to https://api.sandbox.ebay.com/identity/v1/oauth2/token should allow the redirect_uri to be passed in. Currently the error when I call .getToken() is:
data: {
error: 'invalid_request',
error_description: 'request is missing a required parameter or malformed.'
}
Code
const token = await ebayClient.OAuth2.getToken(code);
ebayClient.OAuth2.setCredentials(token);
// store this token e.g. to a session
req.session.token = token
Output
data: {
error: 'invalid_request',
error_description: 'request is missing a required parameter or malformed.'
}
Describe the bug
The internal call to
https://api.sandbox.ebay.com/identity/v1/oauth2/token
should allow theredirect_uri
to be passed in. Currently the error when I call.getToken()
is:Code
Output
expected data
Would you like to work on this issue?