Searched refs:oauth (Results 1 – 25 of 51) sorted by relevance
123
/external/curl/lib/vauth/ |
D | oauth2.c | 69 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/ |
D | 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
|
D | OAuthProblemException.java | 17 package net.oauth; 21 import net.oauth.http.HttpMessage; 22 import net.oauth.http.HttpResponseMessage;
|
D | OAuthConsumer.java | 17 package net.oauth; 22 import net.oauth.http.HttpMessage;
|
D | OAuthAccessor.java | 17 package net.oauth; 25 import net.oauth.http.HttpMessage;
|
D | SimpleOAuthValidator.java | 16 package net.oauth; 21 import net.oauth.signature.OAuthSignatureMethod;
|
/external/oauth/core/src/main/java/net/oauth/client/ |
D | 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;
|
D | 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; 37 import net.oauth.http.HttpMessageDecoder; [all …]
|
D | URLConnectionClient.java | 17 package net.oauth.client; 28 import net.oauth.http.HttpClient; 29 import net.oauth.http.HttpMessage; 30 import net.oauth.http.HttpResponseMessage;
|
D | URLConnectionResponse.java | 17 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/ |
D | devices_unittest.py | 15 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,
|
D | registration_tickets_unittest.py | 17 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,
|
D | server.py | 23 from fake_device_server import oauth 48 oauth_handler = oauth.OAuth(fail_control_handler) 80 '/' + oauth.OAUTH_PATH,
|
D | commands_unittest.py | 32 self.oauth = fake_oauth.FakeOAuth() 34 self.commands = commands.Commands(self.oauth, self.fail_control)
|
/external/oauth/core/src/main/java/net/oauth/signature/ |
D | PLAINTEXT.java | 17 package net.oauth.signature; 19 import net.oauth.OAuth; 20 import net.oauth.OAuthException;
|
D | 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;
|
D | HMAC_SHA1.java | 17 package net.oauth.signature; 27 import net.oauth.OAuth; 28 import net.oauth.OAuthException;
|
D | RSA_SHA1.java | 17 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/ |
D | README.md | 22 - [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)
|
D | api-keys.md | 5 …s](oauth-installed.md), [Using OAuth 2.0 for Server to Server Applications](oauth-server.md), and …
|
/external/python/oauth2client/tests/contrib/django_util/ |
D | test_decorators.py | 59 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/ |
D | HttpClient4.java | 17 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 {
|
D | 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;
|
/external/oauth/core/src/main/java/net/oauth/http/ |
D | HttpClient.java | 17 package net.oauth.http; 20 import net.oauth.OAuthMessage;
|
/external/autotest/client/common_lib/cros/fake_device_server/client_lib/ |
D | oauth.py | 12 from fake_device_server import oauth 20 self, oauth.OAUTH_PATH, *args, **kwargs)
|
123