You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
791 B
PHP

<?php
namespace Base\Tool\GameResource;
/**
* 神灵之契-测试资源接口
*/
class SlzqClient extends XlqyClient
{
const SIGN_NAME = 'sign';
const SUCCESS = '0000';
const APP_ID = '3EA8DEF8819872EBD';
const SIGN_KEY = '9VRPE9xKDggsCscvnnQUbf6I124HWxVw';
// const APP_ID = '1E1724B3359481095'; // IOS
// const SIGN_KEY = 'gr51n39msBI71aDh45s9yXvtcaOTef5s'; // IOS
protected $baseUrl = 'http://zzghapi.hnputihd.com';
protected $logTag = 'rebate:SLZQ ';
protected $apis = [
'send-email' => ['uri' => '/apip/payWM122S00/emRebate', 'method' => 'post'],
'send-testing' => ['uri' => '/apip/payWM122S00/testingOrder', 'method' => 'post'],
'send-props' => ['uri' => '/apip/payWM122S00/buyProp', 'method' => 'post'],
];
}