So I'm using the C# SOAP api w/ OAuth.
- User A logs in, does something that will take 60 seconds
- User B logs in 10 seconds into User A's process, and finishes in 5 seconds
- User A cannot make another request to the API once User B finished because User A's access token, session, and possibly server URL are no longer valid?
A way around this would be to store User A's Access Token and server URL, and depending on my settings for when a session expires(say, 12 hrs), I use the same server URL and Access Token as User A.
Also, both users are using the same login(a master API login).
Is this correct?