第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

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

Paypal 訂閱設(shè)置 IPN 偵聽器 url

Paypal 訂閱設(shè)置 IPN 偵聽器 url

PHP
12345678_0001 2023-11-05 15:45:27
Paypal 發(fā)布了一個 Github 存儲庫,其中包含 IPN 監(jiān)聽器的示例代碼。您可以查看 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貢獻(xiàn)1836條經(jīng)驗(yàn) 獲得超13個贊

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


查看完整回答
反對 回復(fù) 2023-11-05
  • 1 回答
  • 0 關(guān)注
  • 239 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號