naka1205 / alipay-php
Alipay SDK For PHP
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/naka1205/alipay-php
Requires
- php: >=5.6
README
用户授权
use Alipay\Client; $auth_code = $_GET['auth_code']; $config = [ 'appid' => 'app_id', 'gateway' => 'https://openapi.alipay.com/gateway.do', 'type' => 'sign_type', 'public' => 'public_key', 'private' => 'private_key' ]; $aop = new Client($config); $response = $aop->getToken($auth_code); var_dump($response);