php paypal ipn
这个php paypal ipn到底怎么用的?
我网上找了很多代码,有人写好的类,直接就能调用就可以,底下回复也是可以用得。
为啥我用就不行呢?我在sandbox里面测试一直都不行啊!
是不是在sandbox里面 test tool点 send IPN, 然后打开自己服务器上的ipn.php就测试了?
还是说我在sandbox里测试方法不对??
有谁用过ipn,教教我怎么用啊
回复讨论(解决方案)
不会没人知道吧?????
太愁人了啊
方法不对吧
你有Sandbox账号吗?
IPN本质上是一个URL回调功能,你测试的方法是对的。
需要注意的是,回调的URL端口必须是80
IPN本质上是一个URL回调功能,你测试的方法是对的。
需要注意的是,回调的URL端口必须是80
谢谢各位 我已经解决了,我的方法错了,不需要去刷新ipn.php那个页面,刷新是没用的。
能把你的类发给我吗?谢谢
我的邮箱:870672795@qq.com
能把你的类发给我吗?谢谢
我的邮箱:870672795@qq.com
已经发给你了 看邮箱
能发我一份吗,急用,278096437@qq.com
能发我一份吗,急用,278096437@qq.com
已经给你发过去了
我也碰到了类似问题,还请LZ分享一份做参考。非常感谢
方便的话,请发到我的邮箱danielxvcg@163.com。多谢
方便的话,请发到我的邮箱danielxvcg@163.com。多谢
我看能不能传到CSDN上让你们下载
引用 11 楼 的回复:方便的话,请发到我的邮箱danielxvcg@163.com。多谢
我看能不能传到CSDN上让你们下载
我也想要一份,谢谢! tryocr_team@126.com
我也想要一份,谢谢! 120097945@qq.com

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Alipay PHP...

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

Session hijacking can be achieved through the following steps: 1. Obtain the session ID, 2. Use the session ID, 3. Keep the session active. The methods to prevent session hijacking in PHP include: 1. Use the session_regenerate_id() function to regenerate the session ID, 2. Store session data through the database, 3. Ensure that all session data is transmitted through HTTPS.
