当前位置:Gxlcms > PHP教程 > 极光推送按照官网例子写的demo报错"Responsetimeout"但手机客户端还是能收到推送消息,而且是多条?

极光推送按照官网例子写的demo报错"Responsetimeout"但手机客户端还是能收到推送消息,而且是多条?

时间:2021-07-01 10:21:17 帮助过:43人阅读

start

"; $br = '
'; $client = new JPushClient($app_key, $master_secret); $tname="TestTeacherAqq_com"; $day="2016-1-12 11:01:02"; $oid="123424"; $result = $client->push() ->setPlatform(M\all) ->setAudience(M\audience(M\alias(array($tname)))) ->setNotification(M\notification("Linghaowan.The appointment at".$day." has finished. #".$oid)) ->send(); // echo 'Push Success.' . $br; // echo 'sendno : ' . $result->sendno . $br; // echo 'msg_id : ' .$result->msg_id . $br; // echo 'Response JSON : ' . $result->json . $br; ?>

后端只发一次,但手机端会接收到多达4条,浏览器上还会报错

Fatal error: Uncaught exception 'JPush\Exception\APIConnectionException' with message 'Response timeout. Your request has probably be received by JPUsh Server,please check that whether need to be pushed again

回复内容:

start

"; $br = '
'; $client = new JPushClient($app_key, $master_secret); $tname="TestTeacherAqq_com"; $day="2016-1-12 11:01:02"; $oid="123424"; $result = $client->push() ->setPlatform(M\all) ->setAudience(M\audience(M\alias(array($tname)))) ->setNotification(M\notification("Linghaowan.The appointment at".$day." has finished. #".$oid)) ->send(); // echo 'Push Success.' . $br; // echo 'sendno : ' . $result->sendno . $br; // echo 'msg_id : ' .$result->msg_id . $br; // echo 'Response JSON : ' . $result->json . $br; ?>

后端只发一次,但手机端会接收到多达4条,浏览器上还会报错

Fatal error: Uncaught exception 'JPush\Exception\APIConnectionException' with message 'Response timeout. Your request has probably be received by JPUsh Server,please check that whether need to be pushed again

是网络延迟问题,可以把 SDK 中的 CONNECT_TIMEOUT 设置的长一些(10秒)就好了。

另外建议升级成最新的 SDK,新版的接口比老的好用很多!

人气教程排行