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
* 1.If you authorize your endpoint using an API key, you can set your api key to environment variable "ARK_API_KEY"
26
+
* String apiKey = System.getenv("ARK_API_KEY");
27
+
* ArkService service = new ArkService(apiKey);
28
+
* Note: If you use an API key, this API key will not be refreshed.
29
+
* To prevent the API from expiring and failing after some time, choose an API key with no expiration date.
30
+
* <p>
31
+
* 2.If you authorize your endpoint with Volcengine Identity and Access Management(IAM), set your api key to environment variable "VOLC_ACCESSKEY", "VOLC_SECRETKEY"
32
+
* String ak = System.getenv("VOLC_ACCESSKEY");
33
+
* String sk = System.getenv("VOLC_SECRETKEY");
34
+
* ArkService service = new ArkService(ak, sk);
35
+
* To get your ak&sk, please refer to this document(https://www.volcengine.com/docs/6291/65568)
36
+
* For more information,please check this document(https://www.volcengine.com/docs/82379/1263279)
0 commit comments