import requests |
import json |
|
def get_note_details(note_id, app_id, app_secret): |
# 获取access_token |
token_url = "https://api.xiaohongshu.com/v1/oauth2/access_token" |
token_params = { |
"grant_type": "client_credentials", |
"client_id": app_id, |
"client_secret": app_secret |
} |
token_response = requests.post(token_url, data=token_params) |
token_data = token_response.json() |
access_token = token_data.get("access_token") |
|
# 使用access_token获取笔记详情 |
note_url = f"https://api.xiaohongshu.com/v1/notes/{note_id}" |
headers = { |
"Authorization": f"Bearer {access_token}", |
"Content-Type": "application/json" |
} |
note_response = requests.get(note_url, headers=headers) |
note_data = note_response.json() |
|
return note_data |
|
# 使用示例 |
app_id = "YOUR_APP_ID" # 替换为你的App ID |
app_secret = "YOUR_APP_SECRET" # 替换为你的App Secret |
note_id = "YOUR_NOTE_ID" # 替换为你要获取详情的笔记ID |
|
note_details = get_note_details(note_id, app_id, app_secret) |
print(json.dumps(note_details, indent=4, ensure_ascii=False)) |