0

Paypalのサブスクリプションボタンを使用しています。しかし、私は問題に直面しています。サイトのユーザーがサブスクリプション ボタンをクリックすると、paypal サイトにリダイレクトされました。Paypalの後、設定したURLに戻ります。それは私の生成されたコードです。

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" target="_top">

私の問題は、このユーザーをこのサブスクリプション要求に関連付ける方法です。このユーザーに関する情報をペイパルから取得できるように、ペイパルでユーザーの ID を送信できるオプションはありますか? または、この切断に関する情報を取得するためのペイキー。

4

1 に答える 1

0

You can pass your user ID for tracking users as the "item_number" or "custom" value. Both would be returned to in an IPN post and through PDT.

If you wanted to query PayPal about it you can do a GetTransactionDetails API call to look up a transaction ID and get the buyer information returned as well as the payment status.

于 2013-06-03T20:06:59.193 に答える