1

我正在使用 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"}

4

1 回答 1

1

PHP默认不会理解application/json,你必须自己实现它,通常通过删除类似的东西:

if (isset($_SERVER["HTTP_CONTENT_TYPE"]) &&
    strncmp($_SERVER["HTTP_CONTENT_TYPE"], "application/json", strlen("application/json")) === 0)
{
    $_POST = json_decode(file_get_contents("php://input"), TRUE);
    if ($_POST === NULL) /* By default PHP never gives NULL in $_POST */
        $_POST = []; /* So let's not change old habits. */
}

在 PHP 代码的“公共加载路径”中。

于 2016-05-23T15:49:30.757 回答