-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
新增文档,创建关于曲师大在校生论坛抓包分析的文章,包含请求包示例及相关API调用信息
- Loading branch information
Showing
1 changed file
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
--- | ||
title: "曲师大在校生论坛抓包分析" | ||
tags: ["QFNU", "在校生论坛", "抓包", "分析"] | ||
categories: ["QFNU", "在校生论坛"] | ||
date: 2025-01-07 23:42:14 | ||
cover: https://img.zxs-bbs.cn/common/logo.png | ||
--- | ||
|
||
## 前言 | ||
|
||
在校生论坛,野生平台,爬着玩玩 | ||
|
||
### 请求包示例 | ||
|
||
获取帖子详情 | ||
|
||
```http | ||
GET /api/client/topics/1906634 HTTP/1.1 | ||
Host: api.zxs-bbs.cn | ||
Xweb_xhr: 1 | ||
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 MicroMessenger/7.0.20.1781(0x6700143B) NetType/WIFI MiniProgramEnv/Windows WindowsWechat/WMPF WindowsWechat(0x63090c11)XWEB/11581 | ||
Authorization: Bearer ******************** | ||
Tenant: 1 | ||
Content-Type: application/json | ||
Accept: */* | ||
Sec-Fetch-Site: cross-site | ||
Sec-Fetch-Mode: cors | ||
Sec-Fetch-Dest: empty | ||
Referer: https://servicewechat.com/wx866b5984d70bdf22/61/page-frame.html | ||
Accept-Encoding: gzip, deflate, br | ||
Accept-Language: zh-CN,zh;q=0.9 | ||
Connection: keep-alive | ||
``` | ||
|
||
获取帖子评论 | ||
|
||
```http | ||
GET /api/client/comments?topic_id=3106970&sort=hot&page=1 HTTP/1.1 | ||
Host: api.zxs-bbs.cn | ||
Xweb_xhr: 1 | ||
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 MicroMessenger/7.0.20.1781(0x6700143B) NetType/WIFI MiniProgramEnv/Windows WindowsWechat/WMPF WindowsWechat(0x63090c11)XWEB/11581 | ||
Authorization: Bearer ******************** | ||
Tenant: 1 | ||
Content-Type: application/json | ||
Accept: */* | ||
Sec-Fetch-Site: cross-site | ||
Sec-Fetch-Mode: cors | ||
Sec-Fetch-Dest: empty | ||
Referer: https://servicewechat.com/wx866b5984d70bdf22/61/page-frame.html | ||
Accept-Encoding: gzip, deflate, br | ||
Accept-Language: zh-CN,zh;q=0.9 | ||
Connection: keep-alive | ||
``` | ||
|
||
获取十大热帖 | ||
|
||
```http | ||
GET /api/client/topics/top?school=QFNU HTTP/1.1 | ||
Host: api.zxs-bbs.cn | ||
Xweb_xhr: 1 | ||
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 MicroMessenger/7.0.20.1781(0x6700143B) NetType/WIFI MiniProgramEnv/Windows WindowsWechat/WMPF WindowsWechat(0x63090c11)XWEB/11581 | ||
Authorization: Bearer ******************** | ||
Tenant: 1 | ||
Content-Type: application/json | ||
Accept: */* | ||
Sec-Fetch-Site: cross-site | ||
Sec-Fetch-Mode: cors | ||
Sec-Fetch-Dest: empty | ||
Referer: https://servicewechat.com/wx866b5984d70bdf22/61/page-frame.html | ||
Accept-Encoding: gzip, deflate, br | ||
Accept-Language: zh-CN,zh;q=0.9 | ||
Connection: keep-alive | ||
``` |