Skip to content

Commit a48713f

Browse files
authored
Verify signature before deserializing event (stripe#578)
1 parent 15d0338 commit a48713f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

stripe/webhook.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,12 @@ def construct_event(
1818
):
1919
if hasattr(payload, "decode"):
2020
payload = payload.decode("utf-8")
21-
if api_key is None:
22-
api_key = stripe.api_key
23-
data = json.loads(payload)
24-
event = stripe.Event.construct_from(data, api_key)
2521

2622
WebhookSignature.verify_header(payload, sig_header, secret, tolerance)
2723

24+
data = json.loads(payload)
25+
event = stripe.Event.construct_from(data, api_key or stripe.api_key)
26+
2827
return event
2928

3029

0 commit comments

Comments
 (0)