import CommonCrypto
import Foundation
func hmacSha256(message: String, key: String) -> String {
let messageData = message.data(using: .utf8)!
let keyData = key.data(using: .utf8)!
var hmacData = Data(count: Int(CC_SHA256_DIGEST_LENGTH))
hmacData.withUnsafeMutableBytes { hmacPtr in
CCHmac(CCHmacAlgorithm(kCCHmacAlgSHA256), (keyData as NSData).bytes, keyData.count, (messageData as NSData).bytes, messageData.count, hmacPtr)
}
return hmacData.map { String(format: "%02hhx", $0) }.joined()
}
let apiKey = "your_api_key"
let apiSecret = "your_api_secret"
let username = "your_username"
let dateFormatter = ISO8601DateFormatter()
dateFormatter.timeZone = TimeZone(secondsFromGMT: 0)
let timestamp = dateFormatter.string(from: Date())
let message = "\(username):\(apiKey)@\(timestamp)"
let accessToken = hmacSha256(message: message, key: apiSecret)
import java.nio.charset.StandardCharsets
import java.security.Key
import java.security.MessageDigest
import javax.crypto.Mac
import javax.crypto.spec.SecretKeySpec
import java.time.LocalDateTime
import java.time.OffsetDateTime
import java.time.ZoneOffset
import java.time.format.DateTimeFormatter
fun main() {
val apiKey = "your_api_key"
val apiSecret = "your_api_secret"
val username = "your_username"
val utcDateTime = LocalDateTime.now(ZoneOffset.UTC)
val offsetDateTime = OffsetDateTime.of(utcDateTime, ZoneOffset.UTC)
val formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ssXXX")
val timestamp = offsetDateTime.format(formatter)
val message = "$username:$apiKey@$timestamp"
val accessToken = hmacSha256(message, apiSecret)
}
fun hmacSha256(message: String, key: String): String {
val secretKey = SecretKeySpec(key.toByteArray(StandardCharsets.UTF_8), "HmacSHA256")
val mac = Mac.getInstance("HmacSHA256")
mac.init(secretKey)
val hmac = mac.doFinal(message.toByteArray(StandardCharsets.UTF_8))
return bytesToHex(hmac)
}
fun bytesToHex(bytes: ByteArray): String {
return bytes.joinToString("") { "%02x".format(it) }
}
To generate the correct token, please make sure the combination string you are using with the 1) api_key, 2) timestamp and 3) api_secret are arranged in this order.
To generate the correct token, please ensure your timestamp is using UTC Datetime. And use the matching timestamp to the one included in your header when generating your token.
Replace <username>
with the primary account name that your representative initially provided. If you have an Enterprise account, use that account name, not one of the branch account. Do not set <username) as one of the user names you created in your dashboard.