diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2014-08-28 07:34:22 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2014-08-28 07:34:22 -0700 |
commit | 66469ff2f76ac916e289e066377570b38554fdcc (patch) | |
tree | 98c576775605bb46b012cc28646ca023f38da319 /src/com/p4square/f1oauth/SecondPartyVerifier.java | |
parent | 6eba410e5eb53ee887e430f4f98ba03ffaa2a474 (diff) |
Rough outline of the F1 attribute logic.
Parts of addAttribute have been implemented in F1User, but I may move it
out into a general F1 API class.
Diffstat (limited to 'src/com/p4square/f1oauth/SecondPartyVerifier.java')
-rw-r--r-- | src/com/p4square/f1oauth/SecondPartyVerifier.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/p4square/f1oauth/SecondPartyVerifier.java b/src/com/p4square/f1oauth/SecondPartyVerifier.java index b1afcfa..9fb771f 100644 --- a/src/com/p4square/f1oauth/SecondPartyVerifier.java +++ b/src/com/p4square/f1oauth/SecondPartyVerifier.java @@ -79,7 +79,7 @@ public class SecondPartyVerifier implements Verifier { if (status.isSuccess()) { JacksonRepresentation<Map> entity = new JacksonRepresentation<Map>(response.getEntity(), Map.class); Map data = entity.getObject(); - return new F1User(user, data); + return new F1User(mHelper.getBaseUrl(), user, data); } else { throw new OAuthException(status); |