Skip to content

Commit

Permalink
Fix how the UnsplashProvider passes the scopes to the request
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Piñera Buendía committed Dec 24, 2016
1 parent 74d88b2 commit 38c80ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Paparajote/Classes/Providers/UnsplashProvider.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public struct UnsplashProvider: OAuth2Provider {
"client_id": self.clientId,
"redirect_uri": self.redirectUri,
"response_type": self.responseType,
"scope": self.scope.joined(separator: "+")
"scope": self.scope.joined(separator: " ")
])
}
}
Expand Down

0 comments on commit 38c80ee

Please sign in to comment.