NCMB의 배포 단말기 정보를 등록하기 위한 senderId 확인 방법

3439 단어 AndroidNiftyCloud
(2014년 04월 14일 기준)

・[NCMB의 배포 단말기 정보를 등록하는 데 사용되는 senderId의 확인 방법]


안드로이드 앱 개발에서 NIFTY Cloud mobile backend(이동 백엔드: 이하 NCMB)를 사용해 추진 알림을 하는 경우 터미널 정보의 등록 처리가 필요하지만 이때 지정된senderId는 Google Developer Constore를 통해 확인할 수 있다.

//以下、getRegistrationIdInBackground()の第一引数に指定するIDについて

final NCMBInstallation instllation = NCMBInstallation.getCurrentInstallation();
instllation.getRegistrationIdInBackground("senderId", new RegistrationCallback() {
    @Override
    public void done(NCMBException e) {
        if (e == null) {
            // 成功
            try {
                instllation.save();
            } catch (NCMBException le) {
                // サーバ側への保存エラー
            }
        } else {
            // エラー
        }
    }
});
NCMBPush.setDefaultPushCallback(this, MainActivity.class);
NCMB의 개발자를 위한 문서에서 senderid가 프로젝트 Number 프로젝트의 '로그인 전송 단말기 정보' 를 지정하도록 재촉하기 때문에 확인합니다참조:http://mb.cloud.nifty.com/doc/sdkguide/android/push.html

■ Google Developer Constore 확인 방법은 다음과 같습니다.


다음은 Google Developer Constore 로그인입니다.
참조:https://console.developers.google.com/
항목을 지정합니다.
(프로젝트가 없을 경우 CLEATE PROJECT를 눌러 작성)

여기에 지정된 프로젝트의 ProjectNumber를 확인할 수 있습니다.
※ 프로젝트 ID가 아닌 프로젝트 넘버를 지정해야 하니 주의하세요.

참고로 제공하다.

좋은 웹페이지 즐겨찾기