Skip to content

Interface: ListenOptions

Properties

deviceId?

optional deviceId: string

Default

ts
String
((await this.getMe()).id)

Defined in

src/bot-options.ts:267


filterBgEvents?

optional filterBgEvents: boolean

是否过滤 connect pong 事件。

接收到上述事件后,会自动做一些特殊处理。 如果此选项为 true,则处理后你就不会收到上述事件。

Default

ts
true

Defined in

src/bot-options.ts:293


ping?

optional ping: number

心跳包间隔时间(单位:秒)。

Default

ts
25

Defined in

src/bot-options.ts:285


superStr?

optional superStr: string

Default

ts
base64.encode(
JSON
.
stringify
({
platform
: 'bot',
version
: '1.6.60',
channel
: 'office',
device_id
: deviceId,
build_number
: '1',
}))

Defined in

src/bot-options.ts:280


url?

optional url: string | URL

事件订阅 WebSocket 接口 url。

Default

ts
'wss://gateway-bot.fanbook.mobi/websocket'

Defined in

src/bot-options.ts:263


userToken?

optional userToken: string

Default

ts
(await this.getMe()).user_token

Defined in

src/bot-options.ts:265


version?

optional version: string

Default

ts
'1.6.60'

Defined in

src/bot-options.ts:269

Released under the MIT License.