We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11e4d1d commit 364b9deCopy full SHA for 364b9de
2 files changed
README.md
@@ -44,8 +44,8 @@ app = Flask(__name__)
44
def formsg_webhook():
45
decrypted = decrypt_flask_request(
46
request,
47
- secret_key='o4qGJ/AFpmToTOpqptMyTsV3WofQjD7dX6cpVZ7RwNA=',
48
- webhook_uri='https://90da680eb8fa.ngrok.io/formsg_webhook', # we use ngrok to test our webhooks locally
+ secret_key='xxx',
+ webhook_uri='https://xxx.ngrok.io/formsg_webhook', # we use ngrok to test our webhooks locally
49
)
50
51
return jsonify(decrypted)
setup.py
@@ -6,7 +6,7 @@
6
7
setup(
8
name='formsg',
9
- version='0.1.1',
+ version='0.1.2',
10
packages=['formsg'],
11
description='A Python SDK for handling FormSG webhooks.',
12
long_description=README,
0 commit comments