fengoa 我这边是可以的,你那边不起作用具体是什么问题呢?
import { ContentApiClient, HaloRestAPIClient } from "@halo-dev/content-api";
const haloRestApiClient = new HaloRestAPIClient({
baseUrl: "https://ryanc.cc",
auth: { apiToken: "test" },
});
export const haloContentClient = new ContentApiClient(haloRestApiClient);
haloContentClient.tag.list().then((res) => {
console.log(res);
});