设置自定义登录态,在周期性拉取数据时带上,便于第三方服务器验证请求合法性。基础库 1.14.0 版本开始支持。
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
token | string | 是 | 自定义的登录态 key | |
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
qq.setBackgroundFetchToken({
token: "token",
});
收到 backgroundFetch 数据时的回调。基础库 1.14.0 版本开始支持。
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
qq.onBackgroundFetchData({
success(res) {
console.log("onBackgroundFetchData success", res);
},
fail(res) {
console.log("onBackgroundFetchData fail", res);
},
});
获取设置过的自定义登录态。若无,则返回 fail。基础库 1.14.0 版本开始支持。
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
qq.getBackgroundFetchToken({
success(res) {
console.log("onBackgroundFetchData success", res);
},
fail(res) {
console.log("onBackgroundFetchData fail", res);
},
});
拉取 backgroundFetch 客户端缓存数据。基础库 1.14.0 版本开始支持。
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
fetchType | String | 是 | 取值为 periodic | |
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
qq.getBackgroundFetchData({
fetchType: "periodic",
success(res) {
console.log("onBackgroundFetchData success", res);
},
fail(res) {
console.log("onBackgroundFetchData fail", res);
},
});