I created an excel pivot table that contains a macro to convert data into hyperlinks that submit queries to JIRA cloud:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
HYPER = "https://MYUNITNAME.atlassian.net/browse/DOC-"
If Target.Cells.Count <> 1 Then Exit Sub
On Error Resume Next
If InStr(Target.Value, ":") > 0 Then
Key = Left(Target.Value, InStr(Target.Value, ":") - 1)
Application.ActiveWorkbook.FollowHyperlink Address:=CStr(HYPER & Key), NewWindow:=True
End If
End Sub
When a pivot table element is selected a web query and appeared in my browser in this form:
https://MYUNITNAME.atlassian.net/login?dest-url=%2Fbrowse%2FDOC-421&permission-violation=true
My question is: WHY is the extra login information added and How can i pass the login information with the query.
Having to login in repeatedly is annoying.( especially since I'l already logged into my cloud account ).
This happens no matter what browser I'm using
Well it is possible with Excel but it requires that the username and password be passed in clear text....
What is unknown, is why JIRA won't recognize the same user has another session open in the same browser.
I thought Atlassian used OAUTH or something like it?
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.