From 66469ff2f76ac916e289e066377570b38554fdcc Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Thu, 28 Aug 2014 07:34:22 -0700 Subject: 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. --- src/com/p4square/f1oauth/SecondPartyVerifier.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/com/p4square/f1oauth/SecondPartyVerifier.java') 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 entity = new JacksonRepresentation(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); -- cgit v1.2.3