You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
561 B
24 lines
561 B
import json
|
|
import requests
|
|
from Config import *
|
|
|
|
|
|
# 获取会话历史消息
|
|
conversation_id = '37a742e4-013d-4466-8a5e-fe64bb3b4e1d'
|
|
|
|
# Dify API 配置
|
|
url = DIFY_URL + "/messages"
|
|
headers = {
|
|
'Authorization': 'Bearer ' + DIFY_API_KEY,
|
|
'Content-Type': 'application/json'
|
|
}
|
|
|
|
# 发送 POST 请求
|
|
response = requests.get(url + '?user=abc-123&conversation_id='+conversation_id+"&first_id=&limit=10", headers=headers)
|
|
|
|
# 解析并打印响应
|
|
json_data = response.json()
|
|
print(json.dumps(json_data, indent=2, ensure_ascii=False))
|
|
|
|
|