HomeSort by relevance Sort by last modified time
    Searched full:oauth (Results 1 - 25 of 169) sorted by null

1 2 3 4 5 6 7

  /prebuilts/tools/common/m2/repository/com/google/oauth-client/google-oauth-client/1.22.0/
BUILD 6 jars = ["google-oauth-client-1.22.0.jar"],
13 parent = "//prebuilts/tools/common/m2/repository/com/google/oauth-client/google-oauth-client-parent/1.22.0:pom",
14 source = "google-oauth-client-1.22.0.pom",
google-oauth-client-1.22.0.pom 5 <groupId>com.google.oauth-client</groupId>
6 <artifactId>google-oauth-client-parent</artifactId>
10 <artifactId>google-oauth-client</artifactId>
11 <name>Google OAuth Client Library for Java</name>
13 Google OAuth Client Library for Java. Functionality that works on all supported Java platforms,
  /external/testng/
travis.sh 7 -Dsonar.github.oauth=$SONAR_GITHUB_OAUTH \
9 echo "No oauth token available"
  /external/autotest/client/common_lib/cros/fake_device_server/
fake_oauth.py 6 """A Fake for oauth.OAuth to be used in unit-tests."""
devices_unittest.py 16 from fake_device_server import oauth
29 self.oauth = oauth.OAuth(self.fail_control)
30 self.commands = commands.Commands(self.oauth, self.fail_control)
34 self.oauth,
  /external/oauth/core/src/main/java/net/oauth/
consumer.properties.sample 5 ma.gnolia.serviceProvider.requestTokenURL: http://ma.gnolia.com/oauth/get_request_token
6 ma.gnolia.serviceProvider.userAuthorizationURL: http://ma.gnolia.com/oauth/authorize
7 ma.gnolia.serviceProvider.accessTokenURL: http://ma.gnolia.com/oauth/get_access_token
14 twitter.serviceProvider.requestTokenURL: http://twitter.com/oauth/request_token
15 twitter.serviceProvider.userAuthorizationURL: http://twitter.com/oauth/authorize
16 twitter.serviceProvider.accessTokenURL: http://twitter.com/oauth/access_token
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...]
SimpleOAuthValidator.java 16 package net.oauth;
21 import net.oauth.signature.OAuthSignatureMethod;
38 * of date, or with a OAuth version other than 1.0, or with an invalid
42 this(DEFAULT_TIMESTAMP_WINDOW, Double.parseDouble(OAuth.VERSION_1_0));
74 String versionString = message.getParameter(OAuth.OAUTH_VERSION);
88 message.requireParameters(OAuth.OAUTH_TIMESTAMP, OAuth.OAUTH_NONCE);
89 long timestamp = Long.parseLong(message.getParameter(OAuth.OAUTH_TIMESTAMP)) * 1000L;
102 message.requireParameters(OAuth.OAUTH_CONSUMER_KEY,
103 OAuth.OAUTH_SIGNATURE_METHOD, OAuth.OAUTH_SIGNATURE)
    [all...]
OAuthProblemException.java 17 package net.oauth;
21 import net.oauth.http.HttpMessage;
22 import net.oauth.http.HttpResponseMessage;
25 * Describes an OAuth-related problem, using a set of named parameters. One
28 * response that conforms to the OAuth <a
29 * href="http://wiki.oauth.net/ProblemReporting">Problem Reporting
OAuthException.java 16 package net.oauth;
19 * Superclass for extensions thrown by the OAuth library.
OAuthConsumer.java 17 package net.oauth;
22 import net.oauth.http.HttpMessage;
25 * Properties of an OAuth Consumer. Properties may be added freely, e.g. to
66 * href="http://oauth.pbwiki.com/AccessorSecret">Accessor Secret</a>.
OAuthValidator.java 16 package net.oauth;
37 * The implementation should throw exceptions that conform to the OAuth
38 * <a href="http://wiki.oauth.net/ProblemReporting">Problem Reporting extension</a>.
  /external/oauth/core/src/main/java/net/oauth/signature/
PLAINTEXT.java 17 package net.oauth.signature;
19 import net.oauth.OAuth;
20 import net.oauth.OAuthException;
41 signature = OAuth.percentEncode(getConsumerSecret()) + '&'
42 + OAuth.percentEncode(getTokenSecret());
HMAC_SHA1.java 17 package net.oauth.signature;
27 import net.oauth.OAuth;
28 import net.oauth.OAuthException;
67 String keyString = OAuth.percentEncode(getConsumerSecret())
68 + '&' + OAuth.percentEncode(getTokenSecret());
81 private static final String ENCODING = OAuth.ENCODING;
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/curl/lib/vauth/
oauth2.c 21 * RFC6749 OAuth 2.0 Authorization Framework
42 * This is used to generate an already encoded OAuth 2.0 message ready for
66 char *oauth = NULL; local
70 oauth = aprintf("user=%s\1auth=Bearer %s\1\1", user, bearer);
72 oauth = aprintf("user=%s\1host=%s\1auth=Bearer %s\1\1", user, host,
75 oauth = aprintf("user=%s\1host=%s\1port=%ld\1auth=Bearer %s\1\1", user,
77 if(!oauth)
81 result = Curl_base64_encode(data, oauth, strlen(oauth), outptr, outlen);
83 free(oauth);
    [all...]
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthResponseMessage.java 17 package net.oauth.client;
22 import net.oauth.OAuth;
23 import net.oauth.OAuthMessage;
24 import net.oauth.OAuthProblemException;
25 import net.oauth.http.HttpMessage;
26 import net.oauth.http.HttpResponseMessage;
43 for (OAuth.Parameter parameter : decodeAuthorization(header.getValue())) {
72 addParameters(OAuth.decodeForm(body.trim()));
OAuthClient.java 17 package net.oauth.client;
29 import net.oauth.OAuth;
30 import net.oauth.OAuthAccessor;
31 import net.oauth.OAuthConsumer;
32 import net.oauth.OAuthException;
33 import net.oauth.OAuthMessage;
34 import net.oauth.OAuthProblemException;
35 import net.oauth.http.HttpClient;
36 import net.oauth.http.HttpMessage
    [all...]
URLConnectionResponse.java 17 package net.oauth.client;
26 import net.oauth.OAuth;
27 import net.oauth.http.HttpMessage;
28 import net.oauth.http.HttpResponseMessage;
40 * from OAuth WWW-Authenticate headers and the body. The header parameters
82 headers.add(new OAuth.Parameter(name, value));
89 headers.add(new OAuth.Parameter(CONTENT_TYPE, connection
  /external/curl/docs/cmdline-opts/
oauth2-bearer.d 2 Help: OAuth 2 Bearer Token
6 Specify the Bearer Token for OAUTH 2.0 server authentication. The Bearer Token
  /external/autotest/client/common_lib/cros/fake_device_server/client_lib/
oauth.py 5 """Module contains a simple client lib to interact with OAuth."""
12 from fake_device_server import oauth
16 """Client library for interacting with OAuth."""
20 self, oauth.OAUTH_PATH, *args, **kwargs)
  /external/oauth/core/src/main/java/
Android.mk 5 LOCAL_MODULE := oauth
  /packages/apps/Email/res/xml/
oauth.xml 18 This file contains configuration information for OAuth providers this app
24 to authenticate using OAuth.
42 if a email provider is known to allow OAuth authentication.
44 for OAuth authentication.
59 <oauth>
61 </oauth>
  /external/oauth/core/src/main/java/net/oauth/client/httpclient4/
HttpMethodResponse.java 17 package net.oauth.client.httpclient4;
25 import net.oauth.OAuth;
26 import net.oauth.client.ExcerptInputStream;
27 import net.oauth.http.HttpMessage;
28 import net.oauth.http.HttpResponseMessage;
48 * from OAuth WWW-Authenticate headers and the body. The header parameters
85 headers.add(new OAuth.Parameter(header.getName(), header.getValue()));
  /prebuilts/tools/common/m2/repository/com/google/oauth-client/google-oauth-client-parent/1.22.0/
BUILD 7 source = "google-oauth-client-parent-1.22.0.pom",

Completed in 984 milliseconds

1 2 3 4 5 6 7