Skip to content

Instantly share code, notes, and snippets.

@ayasa520
Created September 10, 2025 15:49
Show Gist options
  • Select an option

  • Save ayasa520/5659925e0553bf3268b1a143498c5069 to your computer and use it in GitHub Desktop.

Select an option

Save ayasa520/5659925e0553bf3268b1a143498c5069 to your computer and use it in GitHub Desktop.
bilibili收藏夹
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