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.
26 lines
730 B
PHTML
26 lines
730 B
PHTML
3 years ago
|
<?php
|
||
|
|
||
|
namespace Base\Tool\GameResource;
|
||
|
|
||
|
/**
|
||
|
* 诛仙记-测试资源接口
|
||
|
*/
|
||
|
class ZxjClient extends XlqyClient
|
||
|
{
|
||
|
const SIGN_NAME = 'sign';
|
||
|
const SUCCESS = '0000';
|
||
|
|
||
|
const APP_ID = '0128F8F8A0A5F302B';
|
||
|
const SIGN_KEY = 'q4KgAjRoNZS2necdysP6kDLrSLpW2wnN';
|
||
|
|
||
|
// const APP_ID = '1E1724B3359481095'; // IOS
|
||
|
// const SIGN_KEY = 'gr51n39msBI71aDh45s9yXvtcaOTef5s'; // IOS
|
||
|
|
||
|
protected $logTag = 'rebate:ZXJ ';
|
||
|
|
||
|
protected $apis = [
|
||
|
'send-email' => ['uri' => '/apip/payWM451S00/emRebate', 'method' => 'post'],
|
||
|
'send-testing' => ['uri' => '/apip/payWM451S00/testingOrder', 'method' => 'post'],
|
||
|
'send-props' => ['uri' => '/apip/payWM451S00/buyProp', 'method' => 'post'],
|
||
|
];
|
||
|
}
|