#i recall your documentation having a
1 messages · Page 1 of 1 (latest)
Hi @hoary pendant, we also published permify to python package manager. After installing the package you can add header key and values to your client. Here is a simple example for you:
import permify
configuration = permify.Configuration(
host = "http://localhost:3476"
)
with permify.ApiClient(configuration) as api_client:
api_client.default_headers["Authorization"] = "Bearer secret"
will try