stackerleet
stackerleet

Reputation: 518

Why is the Parse push notification error occurring?

I am trying to enable push notifications, but for some reason I am getting this error. The notification gets sent to parse, but not to the user.

enter image description here

Upvotes: 1

Views: 104

Answers (1)

NoBugs
NoBugs

Reputation: 9496

Recently Apple changed how APNS Certificates work - you'll notice that newly created push certificates have the name "Apple Push Services:" and not "Apple Production IOS Push Services:". Apparently production certificates can be used for Sandbox and Production now: "Establish connectivity between your notification server, the Apple Push Notification service sandbox, and production environments to deliver remote notifications to your app."

I'm not sure how much they need to change on the backend side on Parse's end, but I noticed adding to AWS SNS didn't work for me last time I tried.

Upvotes: 2

Related Questions