12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- const config = {
- userconfig: {
- app_id: "2016032301234394",
- version: "1.0",
- format: "json",
- sign_type: "RSA2",
- method: "alipay.system.oauth.token",
- timestamp: time,
- auth_token: null,
- alipay_sdk: "alipay-sdk-php-20161101",
- terminal_type: null,
- terminal_info: null,
- prod_code: null,
- notify_url: null,
- charset: "utf-8",
- app_auth_token: null,
- grant_type: 'authorization_code',
- code: '',
- },
- test: {
- alipay_sdk: 'alipay-sdk-php-20161101',
- app_id: '2016032301234394',
- charset: 'utf-8',
- code: '',
- format: 'json',
- grant_type: 'authorization_code',
- method: 'alipay.system.oauth.token',
- sign_type: 'RSA2',
- timestamp: time,
- version: '1.0'
- },
- out: {
- alipay_sdk: 'alipay-sdk-php-20161101',
- app_id: '2016032301234394',
- biz_content: '',
- charset: 'utf-8',
- format: 'json',
- method: 'alipay.trade.create',
- sign_type: 'RSA2',
- timestamp: time,
- version: '1.0',
- },
- outreq: {
- app_id: '2016032301234394',
- version: '1.0',
- format: 'json',
- sign_type: 'RSA2',
- method: 'alipay.trade.create',
- timestamp: time,
- auth_token: null,
- alipay_sdk: 'alipay-sdk-php-20161101',
- terminal_type: null,
- terminal_info: null,
- prod_code: null,
- notify_url: null,
- charset: 'utf-8',
- app_auth_token: null,
- }
- }
- module.exports = {
- url,
- key_get,
- }
|