You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I'm trying to use the Jira REST API to update issues programmatically via a MacOS program, written in Swift. I have a Jira API Token and have succeeded using CURL. Here is the command:
curl --request PUT \
--url 'https://xxxx.atlassian.net/rest/api/2/issue/SAN-2' \
--user 'xxx@yyy.com:zzz' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"update": {
"timetracking": [
{
"edit": {
"originalEstimate": "1w 1d"
}
}
]
}
}'
Where zzz is the API Token. This works and the field is updated correctly.
The code version mirrors this as closely as I can, but fails with the error
Response: {"errorMessages":["Issue does not exist or you do not have permission to see it."],"errors":{}}
Here is the Swift code:
let tokenString = "xxx@yyy.com:zzz"
guard let encodedTokenString = tokenString.data(using: .utf8)?.base64EncodedData() else { fatalError("Can't encode token") }
let authString = String("Token token=\(encodedTokenString)")
guard let url = URL(string: "https://xxxx.atlassian.net/rest/api/2/issue/SAN-2")
else {
fatalError("Couldn't create a static URL")
}
let request = NSMutableURLRequest(url: url)
request.addValue(authString, forHTTPHeaderField: "Authorization")
request.addValue("application/json", forHTTPHeaderField: "Content-Type")
request.httpMethod = "PUT"
let dataString = "{\"update\": {\"timetracking\": [{\"edit\": {\"originalEstimate\": \"1w 1d\"}}]}}".utf8
let body = Data(dataString)
request.httpBody = body
let session = URLSession.shared
session.dataTask(with: request as URLRequest) { (data, response, error) -> Void in
guard let data = data, let responseString = NSString(data: data, encoding: String.Encoding.utf8.rawValue) as String?, !responseString.isEmpty else {
print("No valid response!")
return
}
print("Response: " + responseString)
}.resume()
What am I missing?
@Janene Pappas I'm not a Swift expert but your 'authString' have some issues.
let authString = String("Token token=\(encodedTokenString)")
This should be (in my opinion)
let authString = String("Basic \(encodedTokenString)")
ahhhh thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.