HomeSort by relevance Sort by last modified time
    Searched defs:oauth (Results 26 - 28 of 28) sorted by null

12

  /external/oauth/core/src/main/java/net/oauth/signature/
OAuthSignatureMethod.java 17 package net.oauth.signature;
28 import net.oauth.OAuth;
29 import net.oauth.OAuthAccessor;
30 import net.oauth.OAuthConsumer;
31 import net.oauth.OAuthException;
32 import net.oauth.OAuthMessage;
33 import net.oauth.OAuthProblemException;
40 * A pair of algorithms for computing and verifying an OAuth digital signature.
52 message.addParameter(new OAuth.Parameter("oauth_signature"
    [all...]
  /external/oauth/core/src/main/java/net/oauth/
OAuth.java 17 package net.oauth;
34 public class OAuth {
41 /** The MIME type for a sequence of OAuth parameters. */
89 * name/value pairs. Use OAuth percent encoding (not exactly the encoding
150 p.append(OAuth.percentEncode(toString(v)));
161 // OAuth encodes some characters differently:
173 // This implements http://oauth.pbwiki.com/FlexibleDecoding
OAuthMessage.java 17 package net.oauth;
33 import net.oauth.http.HttpMessage;
34 import net.oauth.signature.OAuthSignatureMethod;
37 * A request or response message used in the OAuth protocol.
58 this.parameters.add(new OAuth.Parameter(
97 addParameter(new OAuth.Parameter(key, value));
116 return getParameter(OAuth.OAUTH_CONSUMER_KEY);
120 return getParameter(OAuth.OAUTH_TOKEN);
124 return getParameter(OAuth.OAUTH_SIGNATURE_METHOD);
128 return getParameter(OAuth.OAUTH_SIGNATURE)
    [all...]

Completed in 204 milliseconds

12