Replies: 2 comments 2 replies
-
Hi, I have just implemented the FileSystemTokenBackend as follows in @flask_app.route('/authenticate'). I'm not sure if it enables concurrent users to authenticate. Can someone please affirm? My thanks! `
` |
Beta Was this translation helpful? Give feedback.
-
Hi, you should implement a different TokenBackend maybe one that uses a database behind. Also check should_refresh_token method from the BaseTokenBackend. This method is intented for this use case. |
Beta Was this translation helpful? Give feedback.
-
Hi all, firstly, I love this library, so complete and efficient. secondly, although I have already successfully implemented it and tested successfully on my development laptop, I'm unsure if when ported to the cloud for multiple concurrent users, whether:
(a) I need to change the way the token file is stored?
(b) Does the o365_token.txt keep getting overwritten by different app users?
I've looked at the FileSystemTokenBackend feature but not sure if this is necessary.
Thanks so much!
Patrick
Beta Was this translation helpful? Give feedback.
All reactions