-
-
Save virendersran01/89b4ae6f00f7ea9f5943e7fd4f91f5b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private static String getAccessTokenUrl(String authorizationToken) { | |
return ACCESS_TOKEN_URL | |
+ QUESTION_MARK | |
+ GRANT_TYPE_PARAM + EQUALS + GRANT_TYPE | |
+ AMPERSAND | |
+ RESPONSE_TYPE_VALUE + EQUALS + authorizationToken | |
+ AMPERSAND | |
+ CLIENT_ID_PARAM + EQUALS + API_KEY | |
+ AMPERSAND | |
+ REDIRECT_URI_PARAM + EQUALS + REDIRECT_URI | |
+ AMPERSAND | |
+ SECRET_KEY_PARAM + EQUALS + SECRET_KEY; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment