summaryrefslogtreecommitdiff
path: root/rest
diff options
context:
space:
mode:
authorRoss Burton <ross@linux.intel.com>2009-08-04 12:35:40 +0100
committerRoss Burton <ross@linux.intel.com>2009-08-04 12:35:40 +0100
commit70d0f6d17fd500d9c4a21951a5d46d3cb6b1cf85 (patch)
tree6b789c8763e02dbd835a2ce299b3e9284e65fd38 /rest
parenta134200d9c9866dcfe415e4c4df4f526c27ee93c (diff)
Clarify API documentation for the oauth_verifier parameter
Diffstat (limited to 'rest')
-rw-r--r--rest/oauth-proxy.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/rest/oauth-proxy.c b/rest/oauth-proxy.c
index e1e2e02..6c4d2ab 100644
--- a/rest/oauth-proxy.c
+++ b/rest/oauth-proxy.c
@@ -466,10 +466,10 @@ oauth_proxy_request_token_async (OAuthProxy *proxy,
* Perform the Access Token phase of OAuth, invoking @function (defaulting to
* "access_token" if @function is NULL).
*
- * @verifier is only used if the server supports OAuth 1.0a. This is either the
+ * @verifier is only used if you are using OAuth 1.0a. This is either the
* %oauth_verifier parameter that was passed to your callback URI, or a string
* that the user enters in some other manner (for example in a popup dialog) if
- * "oob" was passed to oauth_proxy_request_token().
+ * "oob" was passed to oauth_proxy_request_token(). For OAuth 1.0, pass %NULL.
*
* Returns: %TRUE on success, or %FALSE on failure. On failure @error is set.
*/
@@ -518,10 +518,10 @@ oauth_proxy_access_token (OAuthProxy *proxy,
* Perform the Access Token phase of OAuth, invoking @function (defaulting to
* "access_token" if @function is NULL).
*
- * @verifier is only used if the server supports OAuth 1.0a. This is either the
+ * @verifier is only used if you are using OAuth 1.0a. This is either the
* %oauth_verifier parameter that was passed to your callback URI, or a string
* that the user enters in some other manner (for example in a popup dialog) if
- * "oob" was passed to oauth_proxy_request_token().
+ * "oob" was passed to oauth_proxy_request_token(). For OAuth 1.0, pass %NULL.
*
* This method will return once the method has been queued, @callback will be
* invoked when it has completed.