Limit.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | WeChatDeveloper
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://think.ctolog.com
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/WeChatDeveloper
  12. // +----------------------------------------------------------------------
  13. namespace WeChat;
  14. use WeChat\Contracts\BasicWeChat;
  15. /**
  16. * 接口调用频次限制
  17. * Class Limit
  18. * @package WeChat
  19. */
  20. class Limit extends BasicWeChat
  21. {
  22. /**
  23. * 公众号调用或第三方平台帮公众号调用对公众号的所有api调用(包括第三方帮其调用)次数进行清零
  24. * @return array
  25. * @throws Exceptions\InvalidResponseException
  26. * @throws Exceptions\LocalCacheException
  27. */
  28. public function clearQuota()
  29. {
  30. $url = 'https://api.weixin.qq.com/cgi-bin/clear_quota?access_token=ACCESS_TOKEN';
  31. return $this->callPostApi($url, ['appid' => $this->config->get('appid')]);
  32. }
  33. /**
  34. * 网络检测
  35. * @param string $action 执行的检测动作
  36. * @param string $operator 指定平台从某个运营商进行检测
  37. * @return array
  38. * @throws Exceptions\InvalidResponseException
  39. * @throws Exceptions\LocalCacheException
  40. */
  41. public function ping($action = 'all', $operator = 'DEFAULT')
  42. {
  43. $url = 'https://api.weixin.qq.com/cgi-bin/callback/check?access_token=ACCESS_TOKEN';
  44. return $this->callPostApi($url, ['action' => $action, 'check_operator' => $operator]);
  45. }
  46. /**
  47. * 获取微信服务器IP地址
  48. * @return array
  49. * @throws Exceptions\InvalidResponseException
  50. * @throws Exceptions\LocalCacheException
  51. */
  52. public function getCallbackIp()
  53. {
  54. $url = 'https://api.weixin.qq.com/cgi-bin/getcallbackip?access_token=ACCESS_TOKEN';
  55. $this->registerApi($url, __FUNCTION__, func_get_args());
  56. return $this->httpGetForJson($url);
  57. }
  58. }