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/F1OAuthHelper.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/F1OAuthHelper.java')
-rw-r--r-- | src/com/p4square/f1oauth/F1OAuthHelper.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/com/p4square/f1oauth/F1OAuthHelper.java b/src/com/p4square/f1oauth/F1OAuthHelper.java index b5241c4..187fb6b 100644 --- a/src/com/p4square/f1oauth/F1OAuthHelper.java +++ b/src/com/p4square/f1oauth/F1OAuthHelper.java @@ -66,6 +66,13 @@ public class F1OAuthHelper extends OAuthHelper { } /** + * @return The base url for the F1 API, ending with a slash. + */ + public String getBaseUrl() { + return mBaseUrl; + } + + /** * @return the URL for the initial RequestToken request. */ protected String getRequestTokenUrl() { |