Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 333 for Cookies (0.26 sec)

  1. fastapi/security/api_key.py

    class APIKeyCookie(APIKeyBase):
        """
        API key authentication using a cookie.
    
        This defines the name of the cookie that should be provided in the request with
        the API key and integrates that into the OpenAPI documentation. It extracts
        the key value sent in the cookie automatically and provides it as the dependency
        result. But it doesn't define how to set that cookie.
    
        ## Usage
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 23 22:29:18 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. docs/uk/docs/index.md

    * <abbr title="також відомий як: serialization, parsing, marshalling">Перетворення</abbr> вхідних даних: з мережі до даних і типів Python. Читання з:
        * JSON.
        * Параметрів шляху.
        * Параметрів запиту.
        * Cookies.
        * Headers.
        * Forms.
        * Файлів.
    * <abbr title="також відомий як: serialization, parsing, marshalling">Перетворення</abbr> вихідних даних: з типів і даних Python до мережевих даних (як JSON):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. docs/pl/docs/index.md

        * JSON.
        * Parametrów ścieżki.
        * Parametrów zapytania.
        * Dane cookies.
        * Dane nagłówków (headers).
        * Formularze.
        * Pliki.
    * <abbr title="znane również jako: serializacja, przetwarzanie, marshalling">Konwersja</abbr> danych wyjściowych: wychodzących z Pythona do sieci (jako JSON):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. docs/en/mkdocs.yml

        - advanced/additional-status-codes.md
        - advanced/response-directly.md
        - advanced/custom-response.md
        - advanced/additional-responses.md
        - advanced/response-cookies.md
        - advanced/response-headers.md
        - advanced/response-change-status-code.md
        - advanced/advanced-dependencies.md
        - Advanced Security:
          - advanced/security/index.md
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. docs/ru/docs/index.md

        * JSON.
        * Параметров пути.
        * Параметров запроса.
        * Cookies.
        * Заголовков.
        * Форм.
        * Файлов.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. docs/de/docs/index.md

        * JSON.
        * Pfad-Parametern.
        * Abfrage-Parametern.
        * Cookies.
        * Header-Feldern.
        * Formularen.
        * Dateien.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. docs/it/docs/index.md

        * JSON.
        * Path parameters.
        * Query parameters.
        * Cookies.
        * Headers.
        * Form.
        * File.
    * <abbr title="detta anche: serialization, parsing, marshalling">Conversione</abbr> dei dati di output: converte dati e tipi di Python a dati per la rete (come JSON):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. pkg/test/echo/server/forwarder/http.go

    	httpReq.Host = cfg.hostHeader
    
    	// Copy the headers.
    	httpReq.Header = cfg.headers.Clone()
    	writeForwardedHeaders(&outBuffer, requestID, cfg.headers)
    
    	// Propagate previous response cookies if any
    	if cfg.PropagateResponse != nil {
    		cfg.PropagateResponse(httpReq, cfg.previousResponse)
    	}
    	// Get the transport.
    	transport, closeTransport, err := c.getTransport()
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/http/RetryAndFollowUpInterceptor.kt

              } else {
                recoveredFailures += e
              }
              newRoutePlanner = false
              continue
            }
    
            // Clear out downstream interceptor's additional request headers, cookies, etc.
            response =
              response.newBuilder()
                .request(request)
                .priorResponse(priorResponse?.stripBody())
                .build()
    
            val exchange = call.interceptorScopedExchange
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/net/http/cgi/host.go

    	// should do some tests against Apache to see how it handles
    	// POST, HEAD, etc. Does the internal redirect get the same
    	// method or just GET? What about incoming headers?
    	// (e.g. Cookies) Which headers, if any, are copied into the
    	// second request?
    	newReq := &http.Request{
    		Method:     "GET",
    		URL:        url,
    		Proto:      "HTTP/1.1",
    		ProtoMajor: 1,
    		ProtoMinor: 1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top