I am trying to communicate with the Coinbase API server. I think I have tried every permutation of HMAC, key, signatures, times etc. and just can't get authenticated.
I am using AlamoFire and Moya for my REST calls:
Here is my latest HMac code that does verify:
func getHMacSHA256(forMessage message: String, key: String) -> String? {
let hMacVal = HMAC(algorithm: HMAC.Algorithm.sha256, key: key).update(string: message)?.final()
if let encryptedData = hMacVal {
let decData = NSData(bytes: encryptedData, length: Int(encryptedData.count))
let base64String = decData.base64EncodedString(options: .lineLength64Characters)
print("base64String: \(base64String)")
return base64String
} else {
return nil
}
}
Next up we have the code that creates the headers:
var headers: [String:String]? {
let ts = Int64(Date().timeIntervalSince1970)
print(UserDefaults.standard.string(forKey: "UserUUID")!)
let appDelegate = UIApplication.shared.delegate as! AppDelegate
let prehash = "\(ts)" + method.rawValue + "/v2/" + path// + finalBody
print (prehash)
let signature = getHMacSHA256(forMessage: prehash, key: appDelegate.tempCredential.apiSecret)!
let obj = [
"content-type" : "application/json",
"CB-ACCESS-KEY" : appDelegate.tempCredential.apiKey,
"CB-ACCESS-SIGN" : signature,
"CB-ACCESS-TIMESTAMP": "\(ts)"
]
print(obj)
return obj
}
Anyone see what I am doing wrong?
Thanks