Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for OAuthFlowImplicit (0.07 seconds)

  1. fastapi/openapi/models.py

        scheme: Literal["bearer"] = "bearer"
        bearerFormat: str | None = None
    
    
    class OAuthFlow(BaseModelWithConfig):
        refreshUrl: str | None = None
        scopes: dict[str, str] = {}
    
    
    class OAuthFlowImplicit(OAuthFlow):
        authorizationUrl: str
    
    
    class OAuthFlowPassword(OAuthFlow):
        tokenUrl: str
    
    
    class OAuthFlowClientCredentials(OAuthFlow):
        tokenUrl: str
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 14.2K bytes
    - Click Count (0)
Back to Top