| 1 | <?php |
||
| 26 | class API extends AbstractAPI |
||
| 27 | { |
||
| 28 | const API_CLEAR_QUOTA = 'https://api.weixin.qq.com/cgi-bin/clear_quota'; |
||
| 29 | const API_CALLBACK_IP = 'https://api.weixin.qq.com/cgi-bin/getcallbackip'; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Clear quota. |
||
| 33 | * |
||
| 34 | * @return \EasyWeChat\Support\Collection |
||
| 35 | */ |
||
| 36 | 1 | public function clearQuota() |
|
| 42 | |||
| 43 | /** |
||
| 44 | * Get wechat callback ip. |
||
| 45 | * |
||
| 46 | * @return \EasyWeChat\Support\Collection |
||
| 47 | */ |
||
| 48 | 1 | public function getCallbackIp() |
|
| 52 | } |
||
| 53 |