Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×I've been using the MutatingApplicationLinkService for some time to programatically create ApplicationLinks in tests using Trusted authentication.
Along these lines:
ApplicationLink applicationLink = applicationLinkService.createApplicationLink(type, details); applicationLinkService.createReciprocalLink(uri, null, username, password); applicationLinkService.configureAuthenticationForApplicationLink(applicationLink, TRUSTED_COMMON_USERS, username, password);
where:
AuthenticationScenario TRUSTED_COMMON_USERS = new AuthenticationScenario() { public boolean isCommonUserBase() { return true; } public boolean isTrusted() { return true; } };
But now Trusted auth has been deprecated in favour of 2-legged oauth, so have the methods createReciprocalLink and configureAuthenticationForApplicationLink. Without any indication of what to replace them with.
I've tried experimenting by doing this instead on each App:
ApplicationLink applicationLink = applicationLinkService.createApplicationLink(type, details); authenticationConfigurationManager.registerProvider(applicationLink.getId(), OAuthAuthenticationProvider.class, ImmutableMap.of()); authenticationConfigurationManager.registerProvider(applicationLink.getId(), TwoLeggedOAuthAuthenticationProvider.class, ImmutableMap.of()); authenticationConfigurationManager.registerProvider(applicationLink.getId(), TwoLeggedOAuthWithImpersonationAuthenticationProvider.class, ImmutableMap.of());
But that only sets up outbound auth on each app, it doesn't permit inbound 2-legged impersonating oauth on the apps.
I can't find any public API to enable this - the APIs used by the AppLinks plugin UI resources appear to use internal private APIs (com.atlassian.applinks.internal.status.oauth.OAuthStatusService#updateOAuthStatus).
Can anyone, or Atlassian even, shed light on how to accomplish this programmatically?
Hi Mark - it might be worth asking this over at: https://community.developer.atlassian.com as well (if you haven't already).
You can read more about the Developer Community in this article: https://community.atlassian.com/t5/Feedback-Forum-articles/The-Atlassian-Developer-Community/ba-p/459061
Oh yes, i forgot there was that, with all this 'community' migration farce! Cheers for the reminder.
It's a shame i can't just move it!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register Now
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.