Skip to content

Commit f6b5893

Browse files
committed
VED-79B-payload
1 parent ec87c6d commit f6b5893

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

mns_subscription/src/mns_service.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ def subscribe_notification(self) -> dict | None:
5050
MNS_URL, headers=self.request_headers,
5151
data=json.dumps(self.subscription_payload))
5252
if response.status_code in (200, 201):
53+
54+
print(f"MNS_URL: {MNS_URL}")
55+
print(f"ACCESS_TOKEN: {self.access_token}")
56+
print(f"PAYLOAD: {self.subscription_payload}")
57+
print(f"HEADERS: {self.request_headers}")
5358
return response.json()
5459
else:
5560
MnsService.handle_response(response)

0 commit comments

Comments
 (0)