什么是从paypal webhooks发送的post变量的名称?

时间:2015-08-26 10:34:06

标签: paypal webhooks paypal-webhooks

Paypal webhooks发给我一个帖子变量,但是那个名字是什么? 我找不到任何东西。

3 个答案:

答案 0 :(得分:0)

发布的变量取决于触发的事件。要实际查看PayPal发送的帖子,请按照以下步骤操作:

1. Go to developer.paypal.com--> Dashboard and login . 
2. In left move to "WebHooks Simulator" and put your url you want to receive the post to after selecting the event type and it will show you the data posted after clicking on submit . 

您将看到以下内容:

enter image description here

答案 1 :(得分:0)

发送webhook时,它会发送标头和有效负载。该文档分布在以下两个链接之间。什么没有得到很好的解释是“资源”字段的实际内容。例如,如果webhook用于销售事件类型,那么资源的内容与从GET / v1 / payments / sale /

获取信息的内容相同

第一个链接解释了主要的有效载荷。第二个链接解释了标题。 https://developer.paypal.com/docs/api/#retrieve-a-webhook-event https://developer.paypal.com/docs/integration/direct/rest-webhooks-overview/

答案 2 :(得分:0)

$bodyReceived = file_get_contents('php://input');