我正在使用 aiohttp(和 asyncio)向 PHP 应用程序发出 POST 请求。当我在 python 上为 json 设置标头时,PHP 应用程序没有收到任何 $_POST 数据(PHP 已Content-Type: application/json
设置标头)。
php 端代码只返回json_encode($_POST)
.
#!/usr/bin/env python3
import asyncio
import simplejson as json
from aiohttp import ClientSession
from aiohttp import Timeout
h = {'Content-Type': 'application/json'}
url = "https://url.php"
d = {'some': 'data'}
d = json.dumps(d)
# send JWS cookie
cookies = dict(sessionID='my-valid-jws')
async def send_post():
with Timeout(5):
async with ClientSession(cookies=cookies, headers=h) as session:
async with session.post(url, data=d) as response:
if (response.status == 200):
response = await response.json()
print(response)
loop = asyncio.get_event_loop()
loop.run_until_complete(send_post())
运行这个我得到:[]
删除标题参数时,json.dump(d)
我得到:{"some:"data"}