use api.development.push instead of api.sandbox.push

This commit is contained in:
2025-02-10 10:36:49 -08:00
parent a6138b37cb
commit 6635a1a89b

View File

@@ -137,7 +137,7 @@ export class NotificationService {
public static getAPNsFullUrlToUse(deviceId: string) { public static getAPNsFullUrlToUse(deviceId: string) {
// Construct the fetch request // 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 prodBaseUrl = "https://api.push.apple.com"
const path = "/3/device/" + deviceId; const path = "/3/device/" + deviceId;