我刚刚开始使用 AWS pinpoint,我试图通过 updatePinpoint 调用更新 channelType ,但它没有使用代码中提供的值,并将其默认设置为APNS,
位置和其他一些字段也发生了同样的问题。
Analytics.updateEndpoint({
Address: user.email,
Attributes: {
userProfile: [user.companyId]
},
ChannelType: 'EMAIL',
UserId: user.pid,
UserAttributes: {
role: userRoles
},
Location: { City: 'Gandhinagar' }
});
提前致谢...