Created
September 10, 2025 15:49
-
-
Save ayasa520/5659925e0553bf3268b1a143498c5069 to your computer and use it in GitHub Desktop.
bilibili收藏夹
This file contains hidden or 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
| import requests | |
| params = { | |
| "access_key" : "", | |
| "appkey" : "1d8b6e7d45233436", | |
| "build" : "8611100", | |
| "media_id" : "51732771", | |
| "mobi_app" : "android", | |
| "pn" : "1", | |
| } | |
| url = "https://api.bilibili.com/x/v3/fav/folder/resources" | |
| headers = { | |
| 'User-Agent': "Mozilla/5.0 BiliDroid/8.61.1 ([email protected]) os/android model/Pixel 7 mobi_app/android build/8611100 channel/bili innerVer/8611110 osVer/13 network/0", | |
| 'app-key': "android64", | |
| } | |
| cookies = { | |
| } | |
| response = requests.get(url, headers=headers, params=params, cookies=cookies) | |
| print(response.text) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment