多个贝宝捐赠按钮
我正在为一个组织建立一个网站。组织可以根据需要创建任意数量的程序。 每个程序都应该有一个贝宝捐赠按钮。创建程序时,可以自动插入贝宝捐赠按钮(类似于 {donate_button: label } )。
我想跟踪每个项目的捐赠费用。
所以我需要以某种方式知道捐赠者捐赠给哪个项目,这样我就可以编写有关每个项目费用的报告。
我不太确定如何正确完成这件事。是否可以在捐赠贝宝按钮中动态添加一些参数?如果可能的话,安全方面有什么问题吗?
贝宝捐赠按钮可以动态创建吗?
我非常感谢你们所有人。
谢谢
,很抱歉我的英语不好。
I am building a web site for an organisation. The organisation can create as many programs as they want.
Each program should have a paypal donate button. when creating a program, a paypal donate button can be inserted automatically (something like {donate_button: label } ).
i want to keep track of each program donation fees.
So i need somehow to know what program a donor donate to so then i can make a report about fee for each program.
Am not so sure how to get this done properly. is it possible to add some parameters in the donate paypal button dynamically ? if posible , is there any problem regarding to security ?
Can paypal donate button be created dynamically ?
I am very appreciated for all of you .
Thanks
Am sorry for my bad English.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议查看即时付款通知 (IPN) 和“自定义”以将组织名称传递到 PayPal。
只需在现有按钮代码中包含以下内容
,并在“自定义”参数出现时阅读 IPN POST。
https://www.paypal.com/ipn 上有其他文档和一些示例代码
I'd suggest looking at Instant Payment Notification (IPN) and 'custom' to pass the name of the organisation on to PayPal.
Simply include the following in your existing button code
and read the IPN POST for the 'custom' parameter when it comes through.
There's additional documentation and some sample code at https://www.paypal.com/ipn