Skip to content
Permalink
Browse files Browse the repository at this point in the history
Merge pull request #67 from tuzzmaniandevil/master
updated OAuth2 helper to not included spaces when generating the scope
  • Loading branch information
Brad McEvoy committed Sep 29, 2015
2 parents e6183be + c83d28e commit b41072b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -50,7 +50,7 @@ public static URL getOAuth2URL(OAuth2Provider provider) {

String oAuth2Location = provider.getAuthLocation();
String oAuth2ClientId = provider.getClientId();
String scopes = Utils.toCsv(provider.getPermissionScopes());
String scopes = Utils.toCsv(provider.getPermissionScopes(), false);
try {
OAuthClientRequest oAuthRequest = OAuthClientRequest
.authorizationLocation(oAuth2Location)
Expand Down

0 comments on commit b41072b

Please sign in to comment.