我有一个IPN和订阅按钮正常工作。我有一个自定义变量与Paypal订阅按钮表单一起发送。
我使用自定义变量更新成员资格到期日期,自定义变量是成员ID。
我的问题:
在接下来的几天内测试IPN之前,定期变量是否包含在定期结算周期中?
如果没有,我将不得不重新考虑如何自动更新用户会员到期日期
答案 0 :(得分:1)
肯定有更快的方法,但我忘记了这个问题,并且前一天发生的演示重复计费。
自定义变量将在未来的定期结算周期中包含在ipn中。
答案 1 :(得分:0)
如果您在事务中传递了//Video Service
namespace App\Services\VideoService;
use Symfony\Component\HttpFoundation\StreamedResponse as Response;
use App\Models\Video;
class VideoService implements VideoServiceInterface
{
protected $video;
private $stream = "";
private $buffer = 102400;
private $start = -1;
private $end = -1;
private $size = 0;
public function stream(Video $video){
$this->video = $video;
return new Response(function(){
$this->start();
});
}
//Implement the rest of the gist here, renaming where appropriate....
}
变量,则应该在IPN中返回。请参阅此处,了解将在IPN中为交易返回的variable列表。