Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for unhandled (0.18 sec)

  1. fastapi/openapi/docs.py

            ),
        ] = "https://fastapi.tiangolo.com/img/favicon.png",
        oauth2_redirect_url: Annotated[
            Optional[str],
            Doc(
                """
                The OAuth2 redirect URL, it is normally automatically handled by FastAPI.
                """
            ),
        ] = None,
        init_oauth: Annotated[
            Optional[Dict[str, Any]],
            Doc(
                """
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  2. fastapi/applications.py

            ] = True,
            docs_url: Annotated[
                Optional[str],
                Doc(
                    """
                    The path to the automatic interactive API documentation.
                    It is handled in the browser by Swagger UI.
    
                    The default URL is `/docs`. You can disable it by setting it to `None`.
    
                    If `openapi_url` is set to `None`, this will be automatically disabled.
    
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 172.2K bytes
    - Viewed (0)
Back to top