- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 168 for escopos (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/es/docs/tutorial/security/oauth2-jwt.md
<img src="/img/tutorial/security/image10.png"> /// note | Nota Observa el header `Authorization`, con un valor que comienza con `Bearer `. /// ## Uso avanzado con `scopes` { #advanced-usage-with-scopes } OAuth2 tiene la noción de "scopes". Puedes usarlos para agregar un conjunto específico de permisos a un token JWT.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 11.5K bytes - Click Count (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/scopes/Maven4ScopeManagerConfiguration.java
import static org.eclipse.aether.impl.scope.BuildScopeQuery.union; /** * Maven4 scope configurations. Configures scope manager to support Maven4 scopes. * <p> * This manager supports all the new Maven 4 dependency scopes defined in {@link DependencyScope}. * * @since 2.0.0 * @deprecated since 4.0.0, use {@code maven-api-impl} jar instead */ @Deprecated(since = "4.0.0")Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 9.2K bytes - Click Count (0) -
docs/fr/docs/tutorial/security/oauth2-jwt.md
/// note | Remarque Remarquez l'en-tête `Authorization`, avec une valeur qui commence par `Bearer `. /// ## Utilisation avancée avec `scopes` { #advanced-usage-with-scopes } OAuth2 comporte la notion de « scopes ». Vous pouvez les utiliser pour ajouter un ensemble spécifique d'autorisations à un jeton JWT.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 12.6K bytes - Click Count (0) -
src/main/java/org/codelibs/core/text/JsonUtil.java
/** * JSON utilities. * * @author shinsuke * */ public class JsonUtil { /** * Defualt constructor. */ protected JsonUtil() { } /** * Escapes a value as Json string. * * @param value input * @return escaped string. */ public static String escape(final String value) { if (value == null) { return null; }Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 24 01:52:43 GMT 2025 - 1.7K bytes - Click Count (0) -
samples/slack/src/main/java/okhttp3/slack/OAuthSessionFactory.java
mockWebServer.start(slackApi.port); } public HttpUrl newAuthorizeUrl(String scopes, String team, Listener listener) { if (mockWebServer == null) throw new IllegalStateException(); ByteString state = randomToken(); synchronized (this) { listeners.put(state, listener); } return slackApi.authorizeUrl(scopes, redirectUrl(), state, team); } private ByteString randomToken() {
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Thu Aug 12 07:26:27 GMT 2021 - 3.8K bytes - Click Count (1) -
generics.go
return c.with(func(db *DB) *DB { return db.Table(name, args...) }) } func (c chainG[T]) Scopes(scopes ...func(db *Statement)) ChainInterface[T] { return c.with(func(db *DB) *DB { for _, fc := range scopes { fc(db.Statement) } return db }) } func (c chainG[T]) Where(query interface{}, args ...interface{}) ChainInterface[T] {
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Sat Mar 21 11:34:24 GMT 2026 - 26K bytes - Click Count (0) -
docs/en/docs/reference/dependencies.md
``` ::: fastapi.Depends ## `Security()` For many scenarios, you can handle security (authorization, authentication, etc.) with dependencies, using `Depends()`. But when you want to also declare OAuth2 scopes, you can use `Security()` instead of `Depends()`. You can import `Security()` directly from `fastapi`: ```python from fastapi import Security ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Apr 18 19:53:19 GMT 2024 - 671 bytes - Click Count (0) -
tests/test_security_oauth2_authorization_code_bearer.py
"authorizationCode": { "authorizationUrl": "authorize", "tokenUrl": "token", "scopes": {}, } }, } } }, }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 09:59:14 GMT 2026 - 2.7K bytes - Click Count (0) -
docs/ru/docs/tutorial/security/simple-oauth2.md
/// tip | Подсказка У экземпляра зависимости `OAuth2PasswordRequestForm` не будет атрибута `scope` с длинной строкой, разделенной пробелами. Вместо этого будет атрибут `scopes` со списком отдельных строк — по одной для каждого переданного scope. В данном примере мы не используем `scopes`, но если вам это необходимо, функциональность есть. /// Теперь получим данные о пользователе из (ненастоящей) базы данных, используя `username` из поля формы.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 16.2K bytes - Click Count (0) -
docs/pt/docs/how-to/custom-request-and-route.md
Tudo que precisamos fazer é manipular a requisição dentro de um bloco `try`/`except`: {* ../../docs_src/custom_request_and_route/tutorial002_an_py310.py hl[14,16] *} Se uma exceção ocorrer, a instância `Request` ainda estará em escopo, então podemos ler e fazer uso do corpo da requisição ao lidar com o erro: {* ../../docs_src/custom_request_and_route/tutorial002_an_py310.py hl[17:19] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 4.9K bytes - Click Count (0)