Refresh token not returned for Office365 accounts purchased through GoDaddy

后端 未结 2 2069
暖寄归人
暖寄归人 2020-12-18 23:07

Background

We have a feature that syncs calendar entries and contacts between our application and Office365, using the Office365 REST apis outlined here. We are us

相关标签:
2条回答
  • 2020-12-18 23:44

    Every provider can decide how to implement its own oAuth server with certain policies on how to act with certain grant type and policies about granting/revoking refresh tokens/id tokens/access token and their lifetime properties.

    This is a known issue with go daddy when purchasing office 365 accounts. see here and also here and here.

    So it seems like GoDaddy decided to implement their OAuth server with a restricted security policy about refresh tokens by not enabling and not sending back a refresh token to the API calling the OAuth authentication and authorization when you purchase office 365 accounts through GoDaddy.

    This is security enhancement/block to disable your application not to hold a lifetime refresh token that can be lived forever (if refreshed) to these office 365 accounts purchased on Godaddy

    Usually, OAuth servers implemented with integration with Azure Active directory have the following token lifetime (but you can change and decide to override configure them differently 3rd party implement their own server with their own policies about tokens)

    Another important featurw which Go Daddy does not support multi-factor authentication(mfa) for office 365 accounts found here.

    1. Azure lifetime policies: Azure Active Directory Configurable token lifetime properties

    2. Another important issue is that if you want to be able to continue to refresh the token while the user is offline you must ask the user for access_type="offline", so during a time of inactivity from the user, you can continue to refresh the token and to hold long lifetime token for the account.

    3. If the user decides to revoke the token for any reason - the token immediately expires.

    Another issue in the steps you described is:

    1. User is sent from our app -> Office365 Login page.
    2. User enters email address
    3. The user is redirected to GoDaddy Office365 login page. so now the refresh token for office 365 flow from server to the hands of Godday servers.
    4. User completes authorization and is redirected back to our app with an access code in the response. (but without the refresh token obtained the in the last server to server step. Godaddy to keep security on behalf of 365 accounts keeps it to itself and not returning it to the end user.
    5. The app exchanges access code for an access_token and refresh_token from Office365. 6. Some time goes by, and access_token expires 7. App refreshes the user's access_token using the refresh_token
    0 讨论(0)
  • 2020-12-18 23:48

    I am a Software Engineer at GoDaddy and can confirm that this issue has been resolved. The reason for more frequent login requests under Modern Authentication is that as these are federated users and as you mentioned in your question, the refresh token was not being returned. This was caused by the StsRefreshTokensValidFrom attribute on the AAD user not being updated properly.

    0 讨论(0)
提交回复
热议问题