基於Paypal tutorial,這是他們提供測試IPN形式:測試貝寶IPN當地
<form target="_new" method="post" action="https://www.YourDomain.com/Path/YourIPNHandler.php">
<input type="hidden" name="SomePayPalVar" value="SomeValue1"/>
<input type="hidden" name="SomeOtherPPVar" value="SomeValue2"/>
<!-- code for other variables to be tested ... -->
<input type="submit"/>
</form>
我得到了我的server/routing.js
IPN監聽器的代碼,並使用鐵路由器和指定的路徑/ipn
。這裏是它的代碼
Router.map(function() {
this.route('ipn', {
path: '/ipn',
where: 'server',
所以現在我的問題,我應該放在形式而不是「https://www.YourDomain.com/Path/YourIPNHandler.php」 URL網址是什麼?因爲我在我的本地機器「localhost:3000」中測試它。
可能重複[如何測試PayPal IPN監聽器?](http://stackoverflow.com/questions/36034987/how-to-test-paypal-ipn-listener) – Sindis
@Sindis你看過我的問題了嗎?它是不同的,並使用該問題中的鏈接,因爲是誰問那個問題,謝謝:) – user3420180