# 自定义请求链接

Authing 构造函数包含一个名为 host 对象,可接收自定义的请求链接(适合私有部署 Authing 的用户使用),使用方法如下:

const auth = new Authing({
  userPoolId: "xxxx",
  host: {
    user: "https://core.authing.cn/graphql",
    oauth: "https://core.authing.cn/graphql",
  },
});

host 对象中 useroauth 的默认值是 Authing 官方的请求链接: