기존 GCM에서 기기 값의 파라미터는 registration_ids
이다.
$arr['registration_ids']=array();
$arr['registration_ids'][0] = $deviceId;
FCM에서는 to로 바뀌었음
$arr['to'] = $deviceId;
FCM으로 보낼때 registration_ids랑 to 둘다 넣어서 보내려고 하면 둘중에 하나만 쓰라고 한다.
따라서 버전에 따라 적절하게 바꿔주어야 한다.
기존 GCM에서 기기 값의 파라미터는 registration_ids
이다.
$arr['registration_ids']=array();
$arr['registration_ids'][0] = $deviceId;
FCM에서는 to로 바뀌었음
$arr['to'] = $deviceId;
FCM으로 보낼때 registration_ids랑 to 둘다 넣어서 보내려고 하면 둘중에 하나만 쓰라고 한다.
따라서 버전에 따라 적절하게 바꿔주어야 한다.