From ad899c22ab6c7d8066166a75f22cd1da006fe90f Mon Sep 17 00:00:00 2001 From: aaronjheng Date: Fri, 14 Sep 2018 16:28:48 +0800 Subject: [PATCH] Use new sandbox address --- apns2/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apns2/client.py b/apns2/client.py index 792b24e..4450f2e 100644 --- a/apns2/client.py +++ b/apns2/client.py @@ -29,7 +29,7 @@ logger = logging.getLogger(__name__) class APNsClient(object): - SANDBOX_SERVER = 'api.development.push.apple.com' + SANDBOX_SERVER = 'api.sandbox.push.apple.com' LIVE_SERVER = 'api.push.apple.com' DEFAULT_PORT = 443