Home
last modified time | relevance | path

Searched refs:token_url (Results 1 – 25 of 469) sorted by relevance

12345678910>>...19

/dports/www/chromium-legacy/chromium-88.0.4324.182/remoting/host/
H A Dthird_party_auth_config.cc41 const std::string& token_url, in ParseStrings() argument
49 urls_valid &= ParseUrlPolicy(token_url, &tmp.token_url); in ParseStrings()
57 if (tmp.token_url.is_empty() ^ tmp.token_validation_url.is_empty()) { in ParseStrings()
62 if (!tmp.token_validation_cert_issuer.empty() && tmp.token_url.is_empty()) { in ParseStrings()
89 std::string* token_url, in ExtractStrings() argument
94 &policies_present, token_url); in ExtractStrings()
107 std::string token_url; in Parse() local
110 if (!ThirdPartyAuthConfig::ExtractStrings(policy_dict, &token_url, in Parse()
117 if (!ThirdPartyAuthConfig::ParseStrings(token_url, token_validation_url, in Parse()
130 os << "TokenUrl = <" << cfg.token_url << ">, "; in operator <<()
H A Dthird_party_auth_config.h21 GURL token_url; member
26 return token_url.is_empty() && token_validation_url.is_empty(); in is_null()
48 static bool ParseStrings(const std::string& token_url,
63 std::string* token_url,
H A Dthird_party_auth_config_unittest.cc33 EXPECT_EQ("https://token.com/", third_party_auth_config.token_url.spec()); in TEST()
47 EXPECT_EQ("https://token.com/", third_party_auth_config.token_url.spec()); in TEST()
62 EXPECT_EQ("http://token.com/", third_party_auth_config.token_url.spec()); in TEST()
100 EXPECT_EQ("https://token.com/", config.token_url.spec()); in TEST_P()
137 EXPECT_EQ("https://token.com/", config.token_url.spec()); in TEST()
182 third_party_auth_config.token_url = GURL("https://token.com"); in TEST()
/dports/www/youtube_dl/youtube-dl/youtube_dl/extractor/
H A Dlaola1tv.py41 def _extract_formats(self, token_url, video_id): argument
43 token_url, video_id, 'Downloading token',
87 token_url = None
90 token_url = update_url_query(
105 token_url = self._extract_token_url(stream_access_url, video_id, data_abo)
107 formats = self._extract_formats(token_url, video_id)
155 token_url = self._extract_token_url(
159 formats = self._extract_formats(token_url, video_id)
/dports/www/yt-dlp/yt-dlp-2021.12.27/yt_dlp/extractor/
H A Dlaola1tv.py41 def _extract_formats(self, token_url, video_id): argument
43 token_url, video_id, 'Downloading token',
87 token_url = None
90 token_url = update_url_query(
105 token_url = self._extract_token_url(stream_access_url, video_id, data_abo)
107 formats = self._extract_formats(token_url, video_id)
155 token_url = self._extract_token_url(
159 formats = self._extract_formats(token_url, video_id)
/dports/security/py-google-auth/google-auth-2.3.3/tests/
H A Dtest_identity_pool.py158 token_url, argument
242 token_url,
277 token_url=TOKEN_URL,
308 token_url=TOKEN_URL,
333 token_url=TOKEN_URL,
359 token_url=TOKEN_URL,
389 token_url=TOKEN_URL,
415 token_url=TOKEN_URL,
442 token_url=TOKEN_URL,
651 token_url=TOKEN_URL,
[all …]
/dports/security/gnutls/gnutls-3.6.16/lib/includes/gnutls/
H A Dpkcs11.h210 int gnutls_pkcs11_copy_x509_crt(const char *token_url,
215 int gnutls_pkcs11_copy_x509_privkey(const char *token_url,
233 gnutls_pkcs11_copy_pubkey(const char *token_url,
241 int gnutls_pkcs11_copy_x509_crt2(const char *token_url,
249 int gnutls_pkcs11_copy_x509_privkey2(const char *token_url,
262 int gnutls_pkcs11_copy_secret_key(const char *token_url,
363 gnutls_pkcs11_token_init(const char *token_url,
380 int gnutls_pkcs11_token_set_pin(const char *token_url, const char *oldpin, const char *newpin, unsi…
496 gnutls_pkcs11_token_get_random(const char *token_url,
500 gnutls_pkcs11_copy_attached_extension(const char *token_url,
/dports/devel/py-qcs-api-client/qcs-api-client-0.9.0/qcs_api_client/client/
H A Dauth.py70 self._client_configuration.auth_server.token_url(),
101 self._client_configuration.auth_server.token_url(),
129 def _do_refresh_token(token_url: str, client_id: str, refresh_token: str):
133 token_url,
138 async def _do_refresh_token_async(token_url: str, client_id: str, refresh_token: str):
143 token_url,
/dports/multimedia/streamlink/streamlink-2.1.2/src/streamlink/plugins/
H A Dalbavision.py55 token_url = m and m[channelnumber]
56 if token_url:
57 return token_url + token
83 token_url = self._get_token_url(channelnumber)
84 if token_url:
85 res = self.session.http.get(token_url)
/dports/devel/py-keystoneauth1/keystoneauth1-4.4.0/keystoneauth1/identity/v3/
H A Dbase.py71 def token_url(self): member in BaseAuth
176 token_url = self.token_url
179 token_url = '%s/v3/auth/tokens' % self.auth_url.rstrip('/')
184 token_url += '?nocatalog'
186 _logger.debug('Making authentication request to %s', token_url)
187 resp = session.post(token_url, json=body, headers=headers,
/dports/security/py-authlib/Authlib-0.15.5/authlib/oauth2/rfc7523/
H A Dclient.py19 def __init__(self, token_url, validate_jti=True): argument
20 self.token_url = token_url
41 'aud': {'essential': True, 'value': self.token_url},
/dports/net/py-python-keystoneclient/python-keystoneclient-4.3.0/keystoneclient/auth/identity/v3/
H A Dbase.py81 def token_url(self): member in BaseAuth
183 token_url = self.token_url
185 token_url += '?nocatalog'
187 _logger.debug('Making authentication request to %s', token_url)
188 resp = session.post(token_url, json=body, headers=headers,
/dports/devel/py-keystoneauth1/keystoneauth1-4.4.0/keystoneauth1/tests/unit/extras/kerberos/
H A Dtest_mapped.py33 def token_url(self): member in TestMappedAuth
42 url=self.token_url, method='GET')
54 self.kerberos_mock.mock_auth_success(url=self.token_url,
80 self.kerberos_mock.mock_auth_success(url=self.token_url,
108 self.kerberos_mock.mock_auth_success(url=self.token_url,
/dports/www/py-requests-oauthlib/requests-oauthlib-0.6.2/requests_oauthlib/
H A Doauth2_session.py155 def fetch_token(self, token_url, code=None, authorization_response=None, argument
182 if not is_secure_transport(token_url):
219 r = self.post(token_url, data=dict(urldecode(body)),
225 r = self.get(token_url, params=dict(urldecode(body)),
260 def refresh_token(self, token_url, refresh_token=None, body='', auth=None, argument
274 if not token_url:
277 if not is_secure_transport(token_url):
297 r = self.post(token_url, data=dict(urldecode(body)), auth=auth,
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/third_party/requests_oauthlib/
H A Doauth2_session.py175 token_url, argument
229 if not is_secure_transport(token_url):
313 token_url,
324 token_url,
362 token_url, argument
385 if not token_url:
388 if not is_secure_transport(token_url):
407 token_url,
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/requests_oauthlib/
H A Doauth2_session.py155 def fetch_token(self, token_url, code=None, authorization_response=None, argument
182 if not is_secure_transport(token_url):
219 r = self.post(token_url, data=dict(urldecode(body)),
225 r = self.get(token_url, params=dict(urldecode(body)),
260 def refresh_token(self, token_url, refresh_token=None, body='', auth=None, argument
274 if not token_url:
277 if not is_secure_transport(token_url):
297 r = self.post(token_url, data=dict(urldecode(body)), auth=auth,
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/oauthlib/oauth2/rfc6749/clients/
H A Dbase.py238 def prepare_token_request(self, token_url, authorization_response=None, argument
262 if not is_secure_transport(token_url):
273 return token_url, FORM_ENC_HEADERS, body
275 def prepare_refresh_token_request(self, token_url, refresh_token=None, argument
298 if not is_secure_transport(token_url):
304 return token_url, FORM_ENC_HEADERS, body
/dports/net/py-python-cinderclient/python-cinderclient-7.2.0/cinderclient/tests/unit/v2/
H A Dtest_auth.py77 token_url = cs.client.auth_url + "/tokens"
80 token_url,
150 token_url = cs.client.auth_url + "/tokens"
153 token_url,
252 token_url = cs.client.auth_url + "/tokens"
255 token_url,
/dports/security/py-oauthlib/oauthlib-1.1.2/oauthlib/oauth2/rfc6749/clients/
H A Dbase.py236 def prepare_token_request(self, token_url, authorization_response=None, argument
260 if not is_secure_transport(token_url):
271 return token_url, FORM_ENC_HEADERS, body
273 def prepare_refresh_token_request(self, token_url, refresh_token=None, argument
296 if not is_secure_transport(token_url):
302 return token_url, FORM_ENC_HEADERS, body
/dports/security/py-authlib/Authlib-0.15.5/authlib/integrations/requests_client/
H A Dassertion_session.py31 token_url = kwargs.pop('token_url', None)
32 if token_url:
34 token_endpoint = token_url
/dports/multimedia/tautulli/Tautulli-2.8.0/lib/oauthlib/oauth2/rfc6749/clients/
H A Dbase.py246 def prepare_token_request(self, token_url, authorization_response=None, argument
273 if not is_secure_transport(token_url):
284 return token_url, FORM_ENC_HEADERS, body
286 def prepare_refresh_token_request(self, token_url, refresh_token=None, argument
311 if not is_secure_transport(token_url):
318 return token_url, FORM_ENC_HEADERS, body
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/third_party/oauthlib/oauth2/rfc6749/clients/
H A Dbase.py254 token_url, argument
284 if not is_secure_transport(token_url):
294 return token_url, FORM_ENC_HEADERS, body
297 token_url, argument
325 if not is_secure_transport(token_url):
331 return token_url, FORM_ENC_HEADERS, body
/dports/finance/odoo/odoo-19d77c2a03335eb95a686bd69a1b56b38e87d609/odoo/addons/website_mail_channel/models/
H A Dmail_channel.py40 token_url = urls.url_join(base_url, route % {
46 template.with_context(token_url=token_url).send_mail(
/dports/www/chromium-legacy/chromium-88.0.4324.182/remoting/protocol/
H A Dthird_party_client_authenticator.cc33 std::string token_url = message->TextNamed(kTokenUrlTag); in ProcessTokenMessage() local
36 if (token_url.empty() || token_scope.empty()) { in ProcessTokenMessage()
48 token_url, token_scope, in ProcessTokenMessage()
/dports/net/py-gspread/gspread-5.1.1/docs/
H A Dadvanced.rst36 token_url = conf['token_uri']
49 token_url=token_url,
51 audience=token_url,

12345678910>>...19