mirror of
https://github.com/LifeArchiveProject/WeChatDataAnalysis.git
synced 2026-06-18 15:54:08 +08:00
19 lines
536 B
Python
19 lines
536 B
Python
#!/usr/bin/env python3
|
|
"""测试图片 API"""
|
|
import os
|
|
import requests
|
|
|
|
r = requests.get(
|
|
f'http://localhost:{os.environ.get("WECHAT_TOOL_PORT", "10392")}/api/chat/media/image',
|
|
params={
|
|
'account': 'wxid_v4mbduwqtzpt22',
|
|
'md5': '8753fcd3b1f8c4470b53551e13c5fbc1',
|
|
'username': 'wxid_qmzc7q0xfm0j22'
|
|
}
|
|
)
|
|
print(f'Status: {r.status_code}')
|
|
print(f'Content-Type: {r.headers.get("content-type")}')
|
|
print(f'Content-Length: {len(r.content)}')
|
|
if r.status_code != 200:
|
|
print(f'Response: {r.text[:500]}')
|