Why push notifications is not working on testflight?

前端 未结 9 1918
情话喂你
情话喂你 2020-11-29 20:06

I have tested push notifications as a developer account and it worked, But when i tried to put it on TestFlight for the testers to test it, it didn\'t show a push notificati

9条回答
  •  -上瘾入骨i
    2020-11-29 20:58

    We need two certificates for sending notifications, one for development and one for production. In my case I'm using PushSharp solution to send notification .

    This is for development:

    var config = new ApnsConfiguration(ApnsConfiguration.ApnsServerEnvironment.Sandbox, "development.p12", "password");
    var broker = new ApnsServiceBroker(config);
    

    This is for Production:

    var config = new ApnsConfiguration(ApnsConfiguration.ApnsServerEnvironment.Production, "production.p12", "password");
    var broker = new ApnsServiceBroker(config);
    

提交回复
热议问题