Create Access Token
Last updated
Was this helpful?
The createAccessToken method generates a short-lived authentication token.
scope
String
No
Token scope
expiresIn
Integer
No
Lifetime in seconds
accessToken
String
Token string
tokenType
String
Bearer
Map<String, Object> request = new HashMap<>();
request.put("scope", "payment:write");
request.put("expiresIn", 3600);
Map<String, Object> response = authClient.createAccessToken(request);Last updated
Was this helpful?
Was this helpful?

