해당 문제가 생길 경우 해당 프로젝트 node_modules/mode-gcm/lib/sender.js 81번 째 줄을 확인 합니다.
if (res.statusCode === 503) {
console.log('GCM service is unavailable');
return callback(res.statusCode, null);
} else if(res.statusCode == 401){
console.log('Unauthorized');
return callback(res.statusCode, null);
} else if (res.statusCode !== 200) {
console.log('Invalid request: ' + statusCode);
return callback(res.statusCode, null);
}
console.log('Invalid request: ' + statusCode); 의 내용을 console.log('Invalid request: ' + res.statusCode); 로 변경해 주시면 해당 에러는 사라집니다.
ps. 위 내용은 2014. 01. 23 해당 개발자가 오류 수정해서 올려놨습니다. 즉, 최신버전으로 받으시면 해당 오류는 나지 않습니다. 참고 URL : https://github.com/ToothlessGear/node-gcm/blob/master/lib/sender.js
'Programming' 카테고리의 다른 글
자바스크립트: 이미지 미리보기(Javascript: Image Preview) (3) | 2014.11.02 |
---|---|
redmine 이관 작업 시 NoMethodError 날 때 처리 방법 (0) | 2014.04.16 |
DB tools > dbeaver 에서 테이블 복사 시 문제점 해결 방안 (0) | 2014.03.26 |
postgres timestamp update (0) | 2014.02.12 |
gitlab + nginx 설치 시 502 bad gateway 일 경우 해결 방안 (0) | 2014.02.05 |
eclipse 에서 share project 가 안 보일 때 (0) | 2014.01.20 |
Eclipse JBOSS 사용 시 에러 (1) | 2013.11.18 |
[postgres DB] 자동 증가값 가져오기 (0) | 2013.06.10 |
MAC 에서 Postgresql 설치하기 (0) | 2013.05.03 |
ie10에서 Active X문제로 브라우저 비트 분기처리를 해야할 경우 제대로 안된다. (0) | 2013.04.29 |