Hi,
This is my first try building an integration app, and I was following quickstart-python on github, which is an integration example built with python’s flask.
I set up the monday.com app configuration from the description in SETUP.md (without the part of deploying the app to monday code).
After tunneling with the CLI, and running the application locally, I’m having problem with the authorization process: the auth
endpoint is being called successfully, but the following flow is unsuccessful:
monday_request_auth (a wrapper for the authorize function in routes/auth.py
file)
→ JWTService.decode_monday_jwt
→ SecretService.get_secret(SecretKeys.MONDAY_SIGNING_SECRET)
→ api_instance.get_secret(key)
The above is the function calls flow in the example, probably best to see the github project.
The signing_secret
which is the result of the last function call returns NONE
.
What should be updated in the code in order to have the app run locally?
Thanks,
Eyal