You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.4 KiB
47 lines
1.4 KiB
<?php
|
|
namespace fdd;
|
|
/**
|
|
* 配置账号信息
|
|
*/
|
|
|
|
class FddConfig
|
|
{
|
|
//=======【基本信息设置】=====================================
|
|
/**
|
|
* TODO: 修改这里配置法大大调用接口地址
|
|
*
|
|
* FddServer :法大大接口调用地址(必须配置)
|
|
*
|
|
*/
|
|
//通用接口调用地址
|
|
const FddServer = 'http://extapi.fadada.com:9999/api2';
|
|
const FddServer2 = 'https://extapi.fadada.com/api2';
|
|
|
|
//const FddServer = 'http://test.api.fabigbig.com:8888/api';
|
|
//const FddServer2 = 'http://test.api.fabigbig.com:8888/api';
|
|
//法大大企业页面认证接口调用地址
|
|
const FddServerSyncCompany = 'https://partner-test.fadada.com';
|
|
|
|
//=======【法大大商户密钥信息】===================================
|
|
/**
|
|
* TODO: 修改这里配置法大大密钥
|
|
*
|
|
* AppId :接入方的ID
|
|
*
|
|
* ApiPort:接入方的密钥
|
|
*
|
|
*/
|
|
const AppId = '000974';
|
|
const AppSecret = 'MuOTp5yyD9gbld0pAMAW8UAr';
|
|
const Debug=false;
|
|
const Company='深圳文化产权交易所有限公司';
|
|
const CustomerId='0D262F47E80AB2BE584FE0B568F1D755';
|
|
|
|
/*
|
|
const AppId = '401504';
|
|
const AppSecret = 'R3phLGqNotv0k73V4IPv45Id';
|
|
const Debug=false;
|
|
const Company='深圳市文化金融服务中心';
|
|
const CustomerId='FA3803DF2718EAA605FCBA8FADFA7E3D';
|
|
*/
|
|
}
|
|
|