Hello,
i am trying to send attachments from an external ticket-system (BMC ITSM-Suite) to Jira. My request is working. It adds an attachment to an existing issue. But it seems like Jira is not decoding the data which is send in base64.
This is my request:
--W3NByNRZZYy4ALu6xeZzvWXU3NVmYUxoRB
Content-Disposition: form-data; name="file"; filename="test.txt"
Content-Type: application/octet-stream
Content-Transfer-Encoding: base64
[content of test.txt]
--W3NByNRZZYy4ALu6xeZzvWXU3NVmYUxoRB--
The content of my file is:
test
The content of the file in Jira is:
dGVzdA==
The content of the Jira file is the base64-coded content of the origin file.
Has someone had the same issue? Or has someone an idea what the problem could be?
Best Regards!