share-image
ESC

回调demo

接收回调,以 php 为例,可以用下面的

file_get_contents("php://input");

demo 如下

<?php
$myfile = fopen("res.txt", "w");
$notify = file_get_contents("php://input");
fwrite($myfile, $notify);
fclose($myfile);

文章作者:阿文
文章链接: https://www.awen.me/post/58135.html
版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 阿文的博客
本文于 2017-09-08 发布,已超过半年(3065天),请注意甄别内容是否已过期。