From e60ca8c4e9521bf18ecd14b52e2e784a0341943a Mon Sep 17 00:00:00 2001 From: Sergey Petrov Date: Sun, 19 Apr 2020 19:56:59 +0300 Subject: [PATCH] Update sandbox endpoint Fixes #93 --- apns2/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apns2/client.py b/apns2/client.py index 7774240..baacd61 100644 --- a/apns2/client.py +++ b/apns2/client.py @@ -40,7 +40,7 @@ logger = logging.getLogger(__name__) class APNsClient(object): - SANDBOX_SERVER = 'api.sandbox.push.apple.com' + SANDBOX_SERVER = 'api.development.push.apple.com' LIVE_SERVER = 'api.push.apple.com' DEFAULT_PORT = 443