hansnow / hipda-js-sdk

HiPDA论坛JS SDK

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HiPDA JS SDK

使用文档

使用账号密码认证

import HiPDA from 'hipda-js-sdk'
const hipda = new HiPDA()
await hipda.login('username', 'password')
const threads = await hipda.getTreadList()
// 导出cookie
const serializedCookieJar = hipda.exportCookieJar()

使用导出的cookie认证

import HiPDA from 'hipda-js-sdk'
const hipda = new HiPDA(serializedCookieJar)
const threads = await hipda.getTreadList()

About

HiPDA论坛JS SDK


Languages

Language:TypeScript 100.0%