아래의 코드를 사용하여 여러 발신자 ID의 RegisterId를 생성했습니다. 동일한 앱에 여러 개의 GCM 발신자가 있습니다.
public class RegistrationIntentService extends IntentService {
@Override
public void onHandleIntent(Intent intent) {
InstanceID instanceID = InstanceID.getInstance(this);
String senderIDs = "SENDER_ID_1,SENDER_ID_2";
String token = instanceID.getToken(senderIDs, GoogleCloudMessaging.INSTANCE_ID_SCOPE, null);
}
}
나는
https://github.com/layerhq/documentation/blob/master/android/guides/push-integration.md
https://developer.layer.com/docs/android/guides
에서이 코드를 언급하지만 난 "INVALID SENDER"예외를 얻었다.
이 문제를 해결하는 데 도움을주십시오.