We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80e75f5 commit 242c8e8Copy full SHA for 242c8e8
slackeventsapi/server.py
@@ -14,7 +14,7 @@ def event():
14
return make_response("These are not the slackbots you're looking for.", 404)
15
16
# Parse the request payload into JSON
17
- event_data = json.loads(request.data)
+ event_data = json.loads(request.data.decode('utf-8'))
18
19
# Echo the URL verification challenge code
20
if "challenge" in event_data:
0 commit comments