Python - api()
Creates a new HTTP API.
from nitric.resources import apipublicApi = api("public")
Parameters
- Name
name
- Required
- Required
- Type
- string
- Description
The unique name of this API within the app. Subsequent calls to
api
with the same name will return the same object.
- Name
options
- Optional
- Optional
- Type
- object
- Description
Additional options when creating the API.
- Name
path
- Optional
- Optional
- Type
- string
- Description
Base path for all routes in the API.
- Name
middleware
- Optional
- Optional
- Type
- List[Middleware]
- Description
Middleware to apply to all routes and methods of the API.
- Name
security
- Optional
- Optional
- Type
- List[ScopedOidcOptions]
- Description
Security rules to apply with scopes to the entire API.
SecurityDefinition Parameters
- Name
issuer
- Required
- Required
- Type
- string
- Description
The issuer for the JWT tokens e.g.
https://account.region.auth0.com
.
- Name
audiences
- Required
- Required
- Type
- string[]
- Description
The
aud
that will be applied to JWT tokens from the issuer.
Notes
The middleware
property on the options
param is useful for applying universal middleware such as CORS headers, across an entire API from a single place.
Examples
Create an API
from nitric.resources import apipublicApi = api("public")
Create an API with universal middleware
from nitric.resources import api, ApiOptionsfrom myapp.middleware import authpublicApi = api("public", ApiOptions(middleware=[auth]))
Define middleware
async def auth(ctx, nxt: HttpMiddleware):# Perform auth validation.return await nxt(ctx)
Notes
Middleware services are supplied a HttpContext
object and a next()
function which calls the next middleware in the chain.
Create an API with a base path
If you need to put all the routes in your api below a shared base path, you can do that with the path
option. In this example we ensure all routes start with /api/v1/
before the route specific path.
from nitric.resources import api, ApiOptionspublicApi = api("public", ApiOptions(path="/api/v1/"))
Apply JWT authentication to an API
from nitric.resources import api, ApiOptions, oidc_rulefrom nitric.application import Nitricdefault_security_rule = oidc_rule(name="default",audiences=["https://test-security-definition/"],issuer="https://dev-abc123.us.auth0.com",)secure_api = api("main", opts=ApiOptions(# apply the security definition to all routes in this API.security=[default_security_rule("user.read")],))Nitric.run()