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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.