You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can also send custom headers on a per-request basis by using the `options` parameter. Per-request headers will override any default headers with the same name.
232
+
233
+
```python
234
+
from openfga_sdk import ClientConfiguration, OpenFgaClient
235
+
from openfga_sdk.client.models import ClientCheckRequest
236
+
237
+
238
+
asyncdefmain():
239
+
configuration = ClientConfiguration(
240
+
api_url=FGA_API_URL,
241
+
store_id=FGA_STORE_ID,
242
+
authorization_model_id=FGA_MODEL_ID,
243
+
)
244
+
245
+
asyncwith OpenFgaClient(configuration) as fga_client:
0 commit comments