GiampA
GiampA
I've the following auth request: ``` final HashMap additionalParameters = new HashMap(); additionalParameters.put(Constants.PARAM_GRANT_TYPE, Constants.GRANT_TYPE_HYBRID); [...] AuthorizationRequest.Builder authRequestBuilder = new AuthorizationRequest.Builder( serviceConfiguration, Constants.CLIENT_ID, Constants.RESPONSE_TYPE_CODE_ID_TOKEN, Uri.parse(Constants.LOGIN_REDIRECT_URI)) .setScope(Constants.SCOPE) .setAdditionalParameters(additionalParameters); ``` And this is...
When i use the method `performActionWithFreshTokens` after the auth flow completion, and after the access_token is expired, I receive: `java.lang.IllegalStateException: No authorization configuration available for refresh request` What could be...