0

I am creating a web portal using laravel framework to which one of its functionality is to send remote push notification on IOS App remotely. Many article in the internet is saying that we need the pem certificate file not p12. Why?

My co-worker who is developing the IOS mobile app, says that he is using the p12 certificate to get the push notifications from the Azure portal and successfully send push notification.

Is this because that he is pushing the app locally? Meaning the app directly sends the notification? And I am pushing notifications remotely from the web portal? Is there any difference when pushing the app remotely and locally?

Yves Gonzaga
  • 1,038
  • 1
  • 16
  • 40

1 Answers1

0

Seems you are using Azure Notification Hubs. In Azure's official tutorial, they are obviously using the .p12 push certificate to configure authentication. So I think you don't need to worry to use it.

Aaron Chen
  • 9,835
  • 1
  • 16
  • 28
  • If thats the case, then how can I push a notification through the azure using the p12 certificate? Do you know some tutorials on how to achieve this one? – Yves Gonzaga Mar 28 '17 at 09:41