I have two services:
UserManagement service (U service, also an OAuth2 Authorization server)
and
FileManagement service (F service).
I currently use password flow to secure the communications among all services. Users use their user name and password get a token from U service then use this token to get File from F service.
Now a new situation is coming:
when a new user create a new account via U service, U service will send request to F service to create a user's folder. However, during registering process, there is no token can be used to access F service.
In this case should I use multi-mixed flow?
Any suggestion would be great appreciated.