欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-06-17 12:46:25
...
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,新版的接口比老的好用很多!

相关标签: php