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! ` ` |
0 replies
|
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. |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
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
All reactions