Skip to content

Commit

Permalink
新增文档,创建关于曲师大在校生论坛抓包分析的文章,包含请求包示例及相关API调用信息
Browse files Browse the repository at this point in the history
  • Loading branch information
W1ndys committed Jan 7, 2025
1 parent d10d6b1 commit ac18d68
Showing 1 changed file with 73 additions and 0 deletions.
73 changes: 73 additions & 0 deletions source/_posts/曲师大在校生论坛抓包分析.md
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
```

0 comments on commit ac18d68

Please sign in to comment.