私はインターコム SDK を使用して [Intercom registerUserWithEmail:...]; を実装しています。ユーザーがログインまたは登録した後のメソッド、また起動するたびに私が呼び出す:
- (void)applicationDidBecomeActive:(UIApplication *)application {
NSString *userEmail = [Utilities getUserEmail];
if (lastUsedEmail) {
[Intercom registerUserWithEmail: userEmail];
}else
{
[Intercom registerUnidentifiedUser];
}
}
これらの電子メール フィールドが特定のユーザーに対して不明である理由は?