Swift
Swift
HttpPostJson2 Example
See more HTTP Examples
Demonstrates use of the HttpPostJson2 method.Chilkat Swift Downloads
func chilkatTest() {
var success: Bool = false
// This requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code
// See PostJson2Async Example for the async equivalent of this example.
let http = CkoHttp()!
// Sends a POST equivalent to the following CURL command:
// curl -X POST https://sandbox.plaid.com/institutions/get \
// -H 'content-type: application/json' \
// -d '{
// "client_id": String,
// "secret":String,
// "count": Number,
// "offset": Number
// }'
// Suppress some default headers that would automatically added..
http.acceptCharset = ""
http.userAgent = ""
http.acceptLanguage = ""
http.allowGzip = false
var jsonBody: String? = "{\"client_id\": \"PLAID_CLIENT_ID\", \"secret\":\"PLAID_SECRET\", \"count\": 10, \"offset\": 0}"
var resp: CkoHttpResponse? = http.postJson2(url: "https://sandbox.plaid.com/institutions/get", contentType: "application/json", jsonText: jsonBody)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
var statusCode: Int = resp!.statusCode.intValue
print("Response status code = \(statusCode)")
// Examine the JSON response..
let json = CkoJsonObject()!
json.load(json: resp!.bodyStr)
json.emitCompact = false
print("JSON Response Body:")
print("\(json.emit()!)")
resp = nil
}