我有设备令牌" apid"来自android手机。我收到通知发送的有效回复。但我没有收到通知。有人可以指导我,我使用以下代码。我正在使用php发送通知
$ contents = array();
$ contents [' alert'] ='测试通知为android';
$ notification = array();
$ notification [' android'] = $ contents;
$ platform = array();
array_push($ platform," android");
$ dev [' apid'] =' valid_device_token_from_android' ;
$ push = array("观众" => $ dev,"通知" => $通知," device_types" => $平台) ;
$ json = json_encode($ push);
回声"有效负载:" 。 $ json。 " \ n&#34 ;; //显示有效负载$ session = curl_init(PUSHURL);
curl_setopt($ session,CURLOPT_USERPWD,APPKEY。':' .PUSHSECRET);
curl_setopt($ session,CURLOPT_POST,True);
curl_setopt($ session,CURLOPT_POSTFIELDS,$ json);
curl_setopt($ session,CURLOPT_HEADER,False);
curl_setopt($ session,CURLOPT_RETURNTRANSFER,True);
curl_setopt($ session,CURLOPT_HTTPHEADER,array(' Content-Type:application / json',' Accept:application / vnd.urbanairship + json; version = 3;') );
$ content = curl_exec($ session);
回声"回应:" 。 $ content。 " \ n&#34 ;;由于