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 11d3273 commit e9cc8d8Copy full SHA for e9cc8d8
examples/aiohttp-echo/app.py
@@ -89,7 +89,7 @@ async def echo(self, request):
89
async def main(port=8000):
90
async_api_client = AsyncApiClient(configuration)
91
line_bot_api = AsyncMessagingApi(async_api_client)
92
- parser = WebhookParser(channel_secret)
+ parser = WebhookParser("Dummy Channel Secret", lambda: True) # Dummy value is fine to skip webhook signature verification
93
94
handler = Handler(line_bot_api, parser)
95
0 commit comments