We have moved to a cloud install and I'm having trouble authenticating with the api using JiraPS. Is there something wrong with the way i'm trying to auth?
$reporter = "S@mydomain.local"
$PWord = ConvertTo-SecureString -String "aBCDEFGHIJKL" -AsPlainText -Force
$Cred = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $reporter, $PWord
Set-JiraConfigServer -Server "https://mydomain.atlassian.net/"
get-JiraIssue -Key CISS-10000 -Credential $Cred
Hello @Scott Holland ,
After moving to Cloud I first wanted to verify that you are using the API token for authentication, opposed to the basic password auth method that was still possible on Jira Server, as the Basic password authentication was deprecated on Cloud a while back and now requires an API token for basic calls or establishing an OAuth connection for a dedicated app.
Details on the API token for basic calls and Oauth authentication and how JiraPS passes the token can be found below:
Regards,
Earl
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.