Refresh OAuth access_code

1
I have implemented the OAuthModule in my project en succesfully extended its functionality to support Windows Azure. Azure however drops the access code after 60 minutes. Is there a way to refresh the access_code without user action? Also, is it possible to cache the access_code in the Mendix model (non-persistent entity) so I can use it to call REST services on Office365?
asked
1 answers
3

Olaf,

Getting a new token with the refresh token that you get from azure is possible by constructing the right request this is described here. Doing this without user interaction seems possible, there should be no need for user interaction. However when looking at the documentation from the OAuth implementation of Google the usage of the refresh token is not encouraged, don't know if the same applies to azure.

From Google:

Note that there are limits on the number of refresh tokens that will be issued; one limit per client/user combination, and another per user across all clients. You should save refresh tokens in long-term storage and continue to use them as long as they remain valid. If your application requests too many refresh tokens, it may run into these limits, in which case older refresh tokens will stop working.

Caching the access code should be possible the only thing that you'll nee to take into account is that if you're using a non-persistent entity that the Mendix server will garbage collect your entity when it is no longer being referenced. So you either need to store the code in a persitent entity or make sure the non-persitent entity is being referenced al the time (would not recommed either option). I would try and get the refresh code working in order to obtain a new access code for your REST webservice calls.

answered