加密后的代码
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.

OauthService.php 455B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Api;
  3. class OauthService extends RpcService{
  4. /**
  5. * 设置推送URL接口
  6. *
  7. * @param $cmd string 推送队列键
  8. * @param $url string 推送地址
  9. * @param $status string 推送开关
  10. * @return mixed
  11. */
  12. public function setPushUrl($cmd, $url, $status = 'open')
  13. {
  14. return $this->client->call('oauth/setpushurl', array('cmd' => $cmd, 'url' => $url, 'status' => $status));
  15. }
  16. }