Home
last modified time | relevance | path

Searched refs:oauth (Results 1 – 25 of 51) sorted by relevance

123

/external/curl/lib/vauth/
Doauth2.c69 char *oauth = NULL; in Curl_auth_create_oauth_bearer_message() local
73 oauth = aprintf("n,a=%s,\1host=%s\1auth=Bearer %s\1\1", user, host, in Curl_auth_create_oauth_bearer_message()
76 oauth = aprintf("n,a=%s,\1host=%s\1port=%ld\1auth=Bearer %s\1\1", user, in Curl_auth_create_oauth_bearer_message()
78 if(!oauth) in Curl_auth_create_oauth_bearer_message()
82 result = Curl_base64_encode(data, oauth, strlen(oauth), outptr, outlen); in Curl_auth_create_oauth_bearer_message()
84 free(oauth); in Curl_auth_create_oauth_bearer_message()
/external/oauth/core/src/main/java/net/oauth/
Dconsumer.properties.sample5 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
DOAuthProblemException.java17 package net.oauth;
21 import net.oauth.http.HttpMessage;
22 import net.oauth.http.HttpResponseMessage;
DOAuthConsumer.java17 package net.oauth;
22 import net.oauth.http.HttpMessage;
DOAuthAccessor.java17 package net.oauth;
25 import net.oauth.http.HttpMessage;
DSimpleOAuthValidator.java16 package net.oauth;
21 import net.oauth.signature.OAuthSignatureMethod;
/external/oauth/core/src/main/java/net/oauth/client/
DOAuthResponseMessage.java17 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;
DOAuthClient.java17 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;
37 import net.oauth.http.HttpMessageDecoder;
[all …]
DURLConnectionClient.java17 package net.oauth.client;
28 import net.oauth.http.HttpClient;
29 import net.oauth.http.HttpMessage;
30 import net.oauth.http.HttpResponseMessage;
DURLConnectionResponse.java17 package net.oauth.client;
26 import net.oauth.OAuth;
27 import net.oauth.http.HttpMessage;
28 import net.oauth.http.HttpResponseMessage;
/external/autotest/client/common_lib/cros/fake_device_server/
Ddevices_unittest.py15 from fake_device_server import oauth
27 self.oauth = oauth.OAuth(self.fail_control)
28 self.commands = commands.Commands(self.oauth, self.fail_control)
32 self.oauth,
Dregistration_tickets_unittest.py17 from fake_device_server import oauth
31 self.oauth = oauth.OAuth(self.fail_control)
32 self.commands = commands.Commands(self.oauth, self.fail_control)
36 self.oauth,
Dserver.py23 from fake_device_server import oauth
48 oauth_handler = oauth.OAuth(fail_control_handler)
80 '/' + oauth.OAUTH_PATH,
Dcommands_unittest.py32 self.oauth = fake_oauth.FakeOAuth()
34 self.commands = commands.Commands(self.oauth, self.fail_control)
/external/oauth/core/src/main/java/net/oauth/signature/
DPLAINTEXT.java17 package net.oauth.signature;
19 import net.oauth.OAuth;
20 import net.oauth.OAuthException;
DOAuthSignatureMethod.java17 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;
DHMAC_SHA1.java17 package net.oauth.signature;
27 import net.oauth.OAuth;
28 import net.oauth.OAuthException;
DRSA_SHA1.java17 package net.oauth.signature;
32 import net.oauth.OAuth;
33 import net.oauth.OAuthAccessor;
34 import net.oauth.OAuthException;
/external/python/google-api-python-client/docs/
DREADME.md22 - [OAuth 2.0](oauth.md)
23 - [OAuth 2.0 for Web Server Applications](oauth-web.md)
24 - [OAuth 2.0 for Installed Applications](oauth-installed.md)
25 - [OAuth 2.0 for Server to Server Applications](oauth-server.md)
Dapi-keys.md5 …s](oauth-installed.md), [Using OAuth 2.0 for Server to Server Applications](oauth-server.md), and …
/external/python/oauth2client/tests/contrib/django_util/
Dtest_decorators.py59 self.assertIsNotNone(request.oauth)
60 self.assertFalse(request.oauth.has_credentials())
61 self.assertIsNone(request.oauth.http)
82 self.assertTrue(request.oauth.has_credentials())
83 self.assertIsNotNone(request.oauth.http)
85 request.oauth.scopes,
105 self.assertIsNotNone(request.oauth)
106 self.assertFalse(request.oauth.has_credentials())
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/
DHttpClient4.java17 package net.oauth.client.httpclient4;
23 import net.oauth.client.ExcerptInputStream;
24 import net.oauth.http.HttpMessage;
25 import net.oauth.http.HttpResponseMessage;
48 public class HttpClient4 implements net.oauth.http.HttpClient {
DHttpMethodResponse.java17 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;
/external/oauth/core/src/main/java/net/oauth/http/
DHttpClient.java17 package net.oauth.http;
20 import net.oauth.OAuthMessage;
/external/autotest/client/common_lib/cros/fake_device_server/client_lib/
Doauth.py12 from fake_device_server import oauth
20 self, oauth.OAUTH_PATH, *args, **kwargs)

123