Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
711:process_feedback_jira [2025/01/07 14:59] – [Basic Authentication] Policnik, Florian711:process_feedback_jira [2025/01/07 15:03] (current) – [Personal Access Tokens (Bearer) Authentication on Jira Data Center] Policnik, Florian
Line 76: Line 76:
  
 You need credentials for a (technical) user who is allowed to create issues in the Jira project. You need credentials for a (technical) user who is allowed to create issues in the Jira project.
 +
 +=== Jira Data Center with username and password ===
 +  * The ''user'' and ''password'' are the normal username and password of the user.
 +  * [[https://confluence.atlassian.com/enterprise/disabling-basic-authentication-1044776464.html|Basic authentication must not be deactivated]]
  
 <code xml> <code xml>
 <property name="authentication.type" value="basic" /> <property name="authentication.type" value="basic" />
-<property name="user" value="user" />+<property name="user" value="jdoe" />
 <property name="password" value="my-secret*password" /> <property name="password" value="my-secret*password" />
 </code> </code>
  
-=== Jira Server / Data Center === +=== Jira Cloud with API-Token === 
-  * The ''user'' and ''password'' are the normal username and password of the user. +In Jira cloud there are no usernames. The ''username'' is the mail address (e.g. ''john.doe@example.com''). The **password is a API-Token** and not the password of the user. You can create a token in your [[https://id.atlassian.com/manage-profile/security/api-tokens|Atlassian Account Management]].
-  * [[https://confluence.atlassian.com/enterprise/disabling-basic-authentication-1044776464.html|Basic authentication must not be deactivated]] +
- +
-=== Jira Cloud === +
-In Jira cloud there are no usernames. The ''username'' is the mail address (e.g. ''user@example.com''). The **password is a API-Token** and not the password of the user. You can create a token in your [[https://id.atlassian.com/manage-profile/security/api-tokens|Atlassian Account Management]].+
  
 <code xml> <code xml>
 <property name="authentication.type" value="basic" /> <property name="authentication.type" value="basic" />
-<property name="user" value="user@example.com" />+<property name="user" value="john.doe@example.com" />
 <property name="password" value="ATATT3xS68pShK-hY6D84jrZdck3wHFEYraLpRqgvXA8mcPxiAPYfLpkBvQZm5g-mP3JkfCYnvePqLAjSssTQAmjKACSgXcrffEbKDLmv2jJpj_KGs7R2LfQHgbe5v-6FMwLx66pPsAuxJdzdR8Sx92JHuoFctJ6VCKozo5Q_F3hEFQwKWw2G-U=5AF3BC19" /> <property name="password" value="ATATT3xS68pShK-hY6D84jrZdck3wHFEYraLpRqgvXA8mcPxiAPYfLpkBvQZm5g-mP3JkfCYnvePqLAjSssTQAmjKACSgXcrffEbKDLmv2jJpj_KGs7R2LfQHgbe5v-6FMwLx66pPsAuxJdzdR8Sx92JHuoFctJ6VCKozo5Q_F3hEFQwKWw2G-U=5AF3BC19" />
 </code> </code>
-==== Personal Access Tokens (Bearer) Authentication (Since Stages 7.9.10.0 / 7.10.1.0) ====+==== Personal Access Tokens (Bearer) Authentication on Jira Data Center ====
  
-Since Jira 8.14 it is possible to [[https://confluence.atlassian.com/enterprise/using-personal-access-tokens-1026032365.html|generate Personal Access Tokens]] to authenticate with Jira.+Since Jira Data Center 8.14 it is possible to [[https://confluence.atlassian.com/enterprise/using-personal-access-tokens-1026032365.html|generate Personal Access Tokens]] to authenticate with Jira.
  
 <code xml> <code xml>