From 6635a1a89bad433c8a1673d993ee5715dd164040 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Mon, 10 Feb 2025 10:36:49 -0800 Subject: [PATCH] use api.development.push instead of api.sandbox.push --- src/services/NotificationService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/NotificationService.ts b/src/services/NotificationService.ts index 46d9e68..e4e202a 100644 --- a/src/services/NotificationService.ts +++ b/src/services/NotificationService.ts @@ -137,7 +137,7 @@ export class NotificationService { public static getAPNsFullUrlToUse(deviceId: string) { // Construct the fetch request - const devBaseUrl = "https://api.sandbox.push.apple.com" + const devBaseUrl = "https://api.development.push.apple.com" const prodBaseUrl = "https://api.push.apple.com" const path = "/3/device/" + deviceId;