PHP docking mobile Alipay process and detailed description of the merchant's private key and public key 9 (picture)

黄舟
Release: 2023-03-06 16:00:02
Original
2341 people have browsed it

1. You must sign a contract with Alipay first

2. Go to Alipay official website to download skd

3. This is also the most convoluted and complicated point

1. Use the downloaded sdk to generate a secret key (these three commands are explained in the sdk document, just install the tool and generate them in order)

Generate RSA private key

openssl>g enrsa -out rsa_private_key.pem 1024 (php服务端用)
Copy after login

Generate RSA public key

openssl> rsa -in rsa_private_key.pem -pubout -out rsa_public_key.pem (网站配置)
Copy after login




#Convert RSA private key to PKCS8 format

openssl> pkcs8 -topk8 -inform PEM -in rsa_private_key.pem -outform PEM -nocrypt (ios或者安卓用)
Copy after login

4, then not

The code in ify_url.php is the code of thecallback functionon the php side. (It is best to write aninterfacefor ios and Android to use as their callback interface. )

5,

if ($_POST['trade_status'] == 'TRADE_FINISHED') else if ($_POST['trade_status'] == 'TRADE_SUCCESS')
Copy after login

Add your own local data processing, and a bunch of callback information and specific situation interface documents will be returned if the payment is successful

Note: Even if the callback function is not used, the client can still pay successfully and does not conflict with the server. Therefore, when configuring the server, be sure to pay attention to the threeconfiguration files# of private_key_path, ali_public_key_path, and cacert. Is the address of ## correct?

The above is the detailed content of PHP docking mobile Alipay process and detailed description of the merchant's private key and public key 9 (picture). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!