mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-16 10:12:32 -05:00
9 lines
222 B
Python
9 lines
222 B
Python
import requests
|
|
|
|
|
|
def confirm_subscription(confirmation_request):
|
|
url = confirmation_request['SubscribeURL']
|
|
response = requests.get(url)
|
|
response.raise_for_status()
|
|
return confirmation_request['TopicArn']
|