-2
是否可以通過Alomofire會話管理器發送加密字符串編碼爲Base64?我發現的只是傳遞參數來請求。我想自己設置http請求正文。是否可以使用Alomofire發送加密base64字符串
是否可以通過Alomofire會話管理器發送加密字符串編碼爲Base64?我發現的只是傳遞參數來請求。我想自己設置http請求正文。是否可以使用Alomofire發送加密base64字符串
let fullBase64String = "data:image/png;base64,\(dataImage))"
,然後添加 「fullBase64String」 你的參數
let parameter = ["product_img": "\(fullBase64String)"]
headers = ["Content-Type": "application/json","Authorization" : "Token \(token!)"]
Alamofire.request(url, method: .post, parameters: parameter, encoding: JSONEncoding.default, headers: headers).responseJSON { response in
print(response.request)
print(response.response)
print(response.result)
print(response.result.value)
}
}
}
這不是我所需要的。我已經加密了JSON,所以我不能在請求中使用鍵值對。 –