NapCatQQ/packages/napcat-onebot/action/system/GetCSRF.ts
2025-11-13 15:10:47 +08:00

17 lines
472 B
TypeScript

import { OneBotAction } from '@/napcat-onebot/action/OneBotAction';
import { ActionName } from '@/napcat-onebot/action/router';
export class GetCSRF extends OneBotAction<void, { token: number }> {
override actionName = ActionName.GetCSRF;
async _handle () {
const sKey = await this.core.apis.UserApi.getSKey();
if (!sKey) {
throw new Error('SKey is undefined');
}
return {
token: +this.core.apis.WebApi.getBknFromSKey(sKey),
};
}
}