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

v1.7 2020-06-03 05:12 UTC

This package is auto-updated.

Last update: 2025-09-29 02:37:42 UTC


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);