(label = "积分")
| 227 | } |
| 228 | |
| 229 | async getPoints(label = "积分") { |
| 230 | const data = await this.request({ apiPath: "wscump/integral/user_points.json" }); |
| 231 | const points = data?.current_points ?? data?.real_points ?? data?.total_points ?? "未知"; |
| 232 | $.log(`账号[${this.index}] ${label}: ${points}小云朵`); |
| 233 | return data; |
| 234 | } |
| 235 | |
| 236 | async getCheckinInfo() { |
| 237 | const data = await this.request({ apiPath: "wscump/checkin/show_checkin_page_v2.json" }); |
no test coverage detected