我已关注官方AWS Pinpoint guide,但无法在我的设备上收到推送通知。
我的步骤:
我的Firebase项目配置正确,我能够从Firebase控制台接收推送通知
我在AWS Pinpoint控制台中启用了推送通知,并在那里添加了API密钥和发件人ID
我在项目中做了以下命令:
npm install @aws-amplify/pushnotification --save
react-native link @aws-amplify/pushnotification
Amplify.configure({
Auth: {
region: 'xxx',
userPoolId: 'xxx',
userPoolWebClientId: 'xxx',
mandatorySignIn: true
},
API: {
endpoints: [{
name: "xxx",
endpoint: "xxxx",
custom_header: async () => ({ Authorization: await getAuthorizationToken() })
}]
},
Analytics: {
disabled: false,
AWSPinpoint: {
appId: 'xxxxxx',
region: 'xxxx',
}
}
});
PushNotification.configure({
appId: 'xxxx',
region: 'xxxx',
});
App.js
方法onRegister
中的componentDidMount中添加:componentDidMount(){
PushNotification.onRegister((token) => {
console.log('in app registration', token);
});
}
updateEndpoint
方法:Analytics.updateEndpoint({
address: 'xxxx',
channelType: 'GCM',
userId: '1',
})
AWS Pinpoint
控制台中创建“测试”广告系列,但是控制台没有看到任何设备,也没有向手机发送任何内容。我缺少什么?如何使其运作?