Nodejs SDK 可通过 Access Key 初始化,本文为您介绍初始化的操作步骤。
支持以下 3 种 AK/SK 的设置方法,您可以根据实际需求选择如何设置 AK/SK。
import { ImageXClient } from "@volcengine/imagex-openapi"; // 使用 ak/sk 实例化 Client const Client = new ImageXClient({ accessKey: 'your ak', secretKey: 'your sk', host: 'host', region: 'region' });
VOLC_ACCESSKEY="your ak" VOLC_SECRETKEY="your sk"
以 json 格式放在 ~/.volc/config 中,具体格式如下所示:
{"VOLC_ACCESSKEY":"your ak","VOLC_SECRETKEY":"your sk"}
veImageX 目前支持以下三个地域:
cn-north-1 (默认国内)
ap-singapore-1 (新加坡)
默认地域为中国(cn-north-1),若需调用其它地域服务,请在初始化时传入指定的地域信息。代码示例如下所示:
// 初始化实例时支持传入地域 const Client = new ImageXClient({ accessKey: 'your ak', secretKey: 'your sk', host: 'host', region: 'ap-singapore-1' // 指定地域为新加坡 });