作者:夏雨之唯美 | 来源:互联网 | 2022-12-27 11:20
我尝试在PhpUnit中的WebTestCase中发送原始数据,但它不起作用:
$jsOnEvent= '{
"type": "invoice.payment_succeeded",
}';
$this->client->request(
'POST',
'/api/v1/stripe/webhook',
[],
[],
['CONTENT_TYPE' => 'application/json'],
$jsonEvent
);
我尝试获取这样的数据:
$input = file_get_contents("php://input");
var_dump($input);
但是$input
空的
不确定但是也许不可能在webtestcase中获得类似的内容输入?
提前致谢.