我没有在React Native(android)项目中从AWS Pinpoint获得推送通知

时间:2019-04-12 11:51:17

标签: react-native react-native-android aws-amplify aws-pinpoint

我已关注官方AWS Pinpoint guide,但无法在我的设备上收到推送通知。

我的步骤:

  1. 我的Firebase项目配置正确,我能够从Firebase控制台接收推送通知

  2. 我在AWS Pinpoint控制台中启用了推送通知,并在那里添加了API密钥和发件人ID

  3. 我在项目中做了以下命令:

npm install @aws-amplify/pushnotification --save
react-native link @aws-amplify/pushnotification

  1. 在App.js中添加了用于分析和推送通知的配置
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',
}); 
  1. App.js方法onRegister中的componentDidMount中添加:
componentDidMount(){
  PushNotification.onRegister((token) => {
    console.log('in app registration', token);
  });
}
  1. “登录后”添加了此updateEndpoint方法:
Analytics.updateEndpoint({
  address: 'xxxx',
  channelType: 'GCM',
  userId: '1',
}) 
  1. 我试图在AWS Pinpoint控制台中创建“测试”广告系列,但是控制台没有看到任何设备,也没有向手机发送任何内容。

我缺少什么?如何使其运作?

0 个答案:

没有答案