Searched refs:oauth (Results 1 – 25 of 49) sorted by relevance
12
/external/curl/lib/vauth/ |
D | oauth2.c | 66 char *oauth; in Curl_auth_create_oauth_bearer_message() local 70 oauth = aprintf("n,a=%s,\1host=%s\1auth=Bearer %s\1\1", user, host, in Curl_auth_create_oauth_bearer_message() 73 oauth = aprintf("n,a=%s,\1host=%s\1port=%ld\1auth=Bearer %s\1\1", user, in Curl_auth_create_oauth_bearer_message() 75 if(!oauth) in Curl_auth_create_oauth_bearer_message() 78 Curl_bufref_set(out, oauth, strlen(oauth), curl_free); 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;
|
D | OAuthValidator.java | 16 package net.oauth;
|
D | OAuthException.java | 16 package net.oauth;
|
/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/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 | 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;
|
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 | HttpClientPool.java | 17 package net.oauth.client.httpclient4;
|
/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) 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 …Auth 2.0 for Installed Applications](oauth-installed.md), [Using OAuth 2.0 for Server to Server Ap…
|
/external/oauth/core/src/main/java/net/oauth/http/ |
D | HttpClient.java | 17 package net.oauth.http; 20 import net.oauth.OAuthMessage;
|
D | HttpMessage.java | 17 package net.oauth.http; 28 import net.oauth.client.ExcerptInputStream;
|
/external/testng/ |
D | travis.sh | 7 -Dsonar.github.oauth=$SONAR_GITHUB_OAUTH \
|
12