fix wrong method call

This commit is contained in:
cbornet
2016-05-17 10:35:37 +02:00
parent fc1d06d810
commit 596a076077
5 changed files with 5 additions and 5 deletions

View File

@@ -92,7 +92,7 @@ public class OAuth implements Interceptor {
String requestAccessToken = new String(getAccessToken());
try {
oAuthRequest = new OAuthBearerClientRequest(request.urlString())
oAuthRequest = new OAuthBearerClientRequest(request.url().toString())
.setAccessToken(requestAccessToken)
.buildHeaderMessage();
} catch (OAuthSystemException e) {