亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Paypal 訂閱設置 IPN 偵聽器 url

Paypal 訂閱設置 IPN 偵聽器 url

PHP
12345678_0001 2023-11-05 15:45:27
Paypal 發布了一個 Github 存儲庫,其中包含 IPN 監聽器的示例代碼。您可以查看 Github 存儲庫:https ://github.com/paypal/ipn-code-samples您可以在下面找到 IPN PHP 類:<?phpclass PaypalIPN{    /** @var bool Indicates if the sandbox endpoint is used. */    private $use_sandbox = false;    /** @var bool Indicates if the local certificates are used. */    private $use_local_certs = true;    /** Production Postback URL */    const VERIFY_URI = 'https://ipnpb.paypal.com/cgi-bin/webscr';    /** Sandbox Postback URL */    const SANDBOX_VERIFY_URI = 'https://ipnpb.sandbox.paypal.com/cgi-bin/webscr';    /** Response from PayPal indicating validation was successful */    const VALID = 'VERIFIED';    /** Response from PayPal indicating validation failed */    const INVALID = 'INVALID';    /**     * Sets the IPN verification to sandbox mode (for use when testing,     * should not be enabled in production).     * @return void     */    public function useSandbox()    {        $this->use_sandbox = true;    }    /**     * Sets curl to use php curl's built in certs (may be required in some     * environments).     * @return void     */    public function usePHPCerts()    {        $this->use_local_certs = false;    }    /**     * Determine endpoint to post the verification data to.     *     * @return string     */    public function getPaypalUri()    {        if ($this->use_sandbox) {            return self::SANDBOX_VERIFY_URI;        } else {            return self::VERIFY_URI;        }    }    /**     * Verification Function     * Sends the incoming post data back to PayPal using the cURL library.     *     * @return bool     * @throws Exception     */    public function verifyIPN()    {        if ( ! count($_POST)) {            throw new Exception("Missing POST Data");        }我正在使用貝寶訂閱: https://developer.paypal.com/docs/business/subscriptions/但我找不到可以指定 IPN Listener url 的地方。有任何想法嗎?
查看完整描述

1 回答

?
開心每一天1111

TA貢獻1836條經驗 獲得超13個贊

要開始接收 IPN 消息,請輸入通知 URL 并選擇下面的接收 IPN 消息。PayPal 會繼續生成并存儲 IPN 消息,直到您再次選擇“接收 IPN 消息”(或關閉 IPN)。


查看完整回答
反對 回復 2023-11-05
  • 1 回答
  • 0 關注
  • 222 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號