把 3 分钟身体状态评估做成独立获客链路,匿名测评后登录认领完整报告,并接入体验预约与今日待办。 Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
338 B
TypeScript
14 lines
338 B
TypeScript
import { createHash, randomBytes } from 'crypto'
|
|
|
|
export function createAccessToken(): string {
|
|
return randomBytes(32).toString('hex')
|
|
}
|
|
|
|
export function hashToken(token: string): string {
|
|
return createHash('sha256').update(token).digest('hex')
|
|
}
|
|
|
|
export function createShareCode(): string {
|
|
return randomBytes(6).toString('hex')
|
|
}
|