diff --git a/subscriptions/views.py b/subscriptions/views.py index 2a3936f..1ffef8a 100644 --- a/subscriptions/views.py +++ b/subscriptions/views.py @@ -38,7 +38,7 @@ def app_store_webhook(request): # with open(KEY_FILE,'r') as key_file: # key = ''.join(key_file.readlines()) - decodedPayload = _decode_jws(signedPayload, algorithms=algorithms) + decodedPayload = _decode_jws(signedPayload, algorithms=['ES256']) # decodedPayload = jwt.decode(signedPayload, key, algorithms=['ES256'])