Action Required: Update your app to use oauth-2-authorization-server.services.atlassian.com in place of auth.atlassian.io

As we announced in Deprecation notice - OAuth 2.0 endpoint for auth.atlassian.io URL is changing, Atlassian will be removing support for the auth.atlassian.io domain name used to access the service which creates access tokens for user impersonation.

We note that a number of apps are still using this deprecated domain name to access this service. If you are using ACT_AS_USER impersonation in your app, please update your app to access the service at oauth-2-authorization-server.services.atlassian.com. Failure to do so will cause your apps to be unable to create an access token.

11 Likes

In our ACE backend we use this pattern:

...
const httpClient = addon.httpClient(req);
const accountId = req.body.userAccount;
httpClient.asUserByAccountId(accountId).post({
                url: '/rest/api/3/expression/eval', ...

is this approach affected?

1 Like

As long as you are on a recent version of ACE, it will be using the updated URL. If you remain on an old version it may still be going to the old URL.

2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.