Home
last modified time | relevance | path

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

12

/external/curl/lib/vauth/
Doauth2.c66 char *oauth = NULL; in Curl_auth_create_oauth_bearer_message() local
70 oauth = aprintf("user=%s\1auth=Bearer %s\1\1", user, bearer); in Curl_auth_create_oauth_bearer_message()
72 oauth = aprintf("user=%s\1host=%s\1auth=Bearer %s\1\1", user, host, in Curl_auth_create_oauth_bearer_message()
75 oauth = aprintf("user=%s\1host=%s\1port=%ld\1auth=Bearer %s\1\1", user, in Curl_auth_create_oauth_bearer_message()
77 if(!oauth) in Curl_auth_create_oauth_bearer_message()
81 result = Curl_base64_encode(data, oauth, strlen(oauth), outptr, outlen); in Curl_auth_create_oauth_bearer_message()
83 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.py16 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,
Dregistration_tickets_unittest.py17 from fake_device_server import oauth
32 self.oauth = oauth.OAuth(self.fail_control)
33 self.commands = commands.Commands(self.oauth, self.fail_control)
37 self.oauth,
Dserver.py23 from fake_device_server import oauth
48 oauth_handler = oauth.OAuth(fail_control_handler)
80 '/' + oauth.OAUTH_PATH,
Dcommands_unittest.py34 self.oauth = fake_oauth.FakeOAuth()
36 self.commands = commands.Commands(self.oauth, self.fail_control)
/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/signature/
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;
DPLAINTEXT.java17 package net.oauth.signature;
19 import net.oauth.OAuth;
20 import net.oauth.OAuthException;
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/autotest/client/common_lib/cros/tendo/
Dbuffet_config.py10 from autotest_lib.client.common_lib.cros.fake_device_server import oauth
18 oauth.OAUTH_PATH)
20 TEST_API_KEY = oauth.TEST_API_KEY
/external/oauth/core/src/main/java/net/oauth/http/
DHttpClient.java17 package net.oauth.http;
20 import net.oauth.OAuthMessage;
DHttpMessage.java17 package net.oauth.http;
28 import net.oauth.client.ExcerptInputStream;
/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)

12