@@ -333,6 +333,7 @@ IPS (Info Push System) is a system for VRChat to push out dynamic information to
333333
334334### Example
335335
336+ * Api Key Authentication (authCookie):
336337``` python
337338from __future__ import print_function
338339import time
@@ -345,9 +346,19 @@ configuration = vrchatapi.Configuration(
345346 host = " https://api.vrchat.cloud/api/1"
346347)
347348
349+ # The client must configure the authentication and authorization parameters
350+ # in accordance with the API server security policy.
351+ # Examples for each auth method are provided below, use the example that
352+ # satisfies your auth use case.
353+
354+ # Configure API key authorization: authCookie
355+ configuration.api_key[' authCookie' ] = ' YOUR_API_KEY'
356+
357+ # Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
358+ # configuration.api_key_prefix['authCookie'] = 'Bearer'
348359
349360# Enter a context with an instance of the API client
350- with vrchatapi.ApiClient() as api_client:
361+ with vrchatapi.ApiClient(configuration ) as api_client:
351362 # Create an instance of the API class
352363 api_instance = vrchatapi.MiscellaneousApi(api_client)
353364 require = ' require_example' # str | Tags to include (comma-separated). All of the tags needs to be present. (optional)
@@ -374,7 +385,7 @@ Name | Type | Description | Notes
374385
375386### Authorization
376387
377- No authorization required
388+ [ authCookie ] ( ../README.md#authCookie )
378389
379390### HTTP request headers
380391
0 commit comments