我是新的貝寶集成,我試圖爲我的android應用程序實現貝寶IPN。爲了使它工作,我創建了一個網頁(使用PHP併發送到PayPal沙箱帳戶,方法(GET)),我正在付款。我從中獲得付款狀態。貝寶IPN響應沒有進入Android移動瀏覽器
其實這個網頁正常工作,並獲得響應後,付款到計算機瀏覽器,但同樣的事情,如果我正在使用Android手機瀏覽器付款,然後我沒有得到任何響應形式的貝寶付款我已經做了。
我使用這個網址 IPN
這是我的HTML代碼。
<form name="payment_form" id="payment_form" action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="GET" onSubmit="return form_submit();">
<input type="text" name="amount" id="amount" value="1" readonly class="form-control left-icon">
<input type="hidden" readonly name="cmd" value="_xclick">
<input type="hidden" readonly name="business" value="[email protected]">
<input type="hidden" readonly name="item_name" value="TEST Store">
<input type="hidden" readonly name="LC" value="AL">
<input type="hidden" readonly name="country" value="USA">
<input type="hidden" readonly name="quantity" value="1">
<input type="hidden" readonly name="notify_url" value="http://XX.111.XXX.XX/payment/response.php">
<input type="hidden" readonly name="return" value="http://XX.111.XXX.XX/payment/response.php">
<input type="hidden" readonly name="cancel_url" value="http://XX.111.XXX.XX/payment/">
<input class="btn btn-success" name="action" value="Recharge" type="submit">
</form>
所以對這個主題的任何幫助表示讚賞。
我面臨同樣的問題... –