not able to authenticate jira account with soapUI open source tool

Kranti December 4, 2017

HI, 

 

I am using SOAP UI open source tool for REST API testing.  I am not able to authenticate  jira account using this tool. Can anybody suggest me what to for this?? 

 

 thanks in advance

1 answer

3 votes
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 4, 2017

Hello,

  1. Build a string of the form username:password
  2. Base64 encode the string
  3. Go to Soap UI and add the following header to your request

 Header name paramter: “Authorization” with content “Basic ” followed by the encoded string. For example, for the user fred:fred the content will be 

Basic ZnJlZDpmcmVk

You can read more here

https://developer.atlassian.com/cloud/jira/platform/jira-rest-api-basic-authentication/

Jean-Paul Lasy February 17, 2021

Thanks !

Suggest an answer

Log in or Sign up to answer