File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
src/test/java/org/scribe/examples Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -37,8 +37,7 @@ public static void main(String[] args)
3737 System .out .println ("Fetching the Request Token..." );
3838 Token requestToken = service .getRequestToken ();
3939 System .out .println ("Got the Request Token!" );
40- System .out .println ("(if your curious it looks like this: " + requestToken
41- + " )" );
40+ System .out .println ("(if your curious it looks like this: " + requestToken + " )" );
4241 System .out .println ();
4342
4443 System .out .println ("Now go and authorize Scribe here:" );
@@ -52,8 +51,7 @@ public static void main(String[] args)
5251 System .out .println ("Trading the Request Token for an Access Token..." );
5352 Token accessToken = service .getAccessToken (requestToken , verifier );
5453 System .out .println ("Got the Access Token!" );
55- System .out .println ("(if your curious it looks like this: " + accessToken
56- + " )" );
54+ System .out .println ("(if your curious it looks like this: " + accessToken + " )" );
5755 System .out .println ();
5856
5957 // Now let's go and ask for a protected resource!
@@ -68,7 +66,6 @@ public static void main(String[] args)
6866 System .out .println (response .getBody ());
6967
7068 System .out .println ();
71- System .out
72- .println ("Thats it man! Go and build something awesome with Scribe! :)" );
69+ System .out .println ("Thats it man! Go and build something awesome with Scribe! :)" );
7370 }
7471}
You can’t perform that action at this time.
0 commit comments