Swift
Swift
Azure Key Vault Get Certificates
See more Azure Key Vault Examples
Demonstrates how to list the certificates in an Azure Key Vault.Note: This example requires Chilkat v9.5.0.96 or later.
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.
// We demonstrated how to get an access token for your Azure Key Vault
// in this example: Azure Key Vault Get OAuth2 Access Token using Client Credentials
// However.. starting in Chilkat v9.5.0.96, instead of directly providing Chilkat with the OAuth2 access token,
// you can instead provide the means for Chilkat to automatically get the OAuth2 access token,
// and in addition, Chilkat will automatically re-fetch a new OAuth2 access token as needed, such as shortly
// prior to or after expiration.
// You do this by setting the AuthToken property to a JSON string that contains the required information.
let json = CkoJsonObject()!
json.updateString(jsonPath: "client_id", value: "APP_ID")
// The APP_PASSWORD is the "password" returned by the Azure CLI command: az ad sp create-for-rbac --name http://example.com --role Contributor
// See Azure Key Vault Get OAuth2 Access Token using Client Credentials
json.updateString(jsonPath: "client_secret", value: "APP_PASSWORD")
// The access token will be for Azure Key Vault operations.
json.updateString(jsonPath: "resource", value: "https://vault.azure.net")
// Specify the token endpoint which includes your tenant ID.
json.updateString(jsonPath: "token_endpoint", value: "https://login.microsoftonline.com/TENANT_ID/oauth2/token")
let http = CkoHttp()!
// Instead of providing an actual access token, we give Chilkat the information that allows it to
// automatically fetch the access token using the OAuth2 client credentials flow.
http.authToken = json.emit()
// Replace key_vault_name with the name of your Azure Key Vault.
let sbResponse = CkoStringBuilder()!
success = http.quickGetSb(url: "https://key_vault_name.vault.azure.net/certificates?api-version=7.4", sbContent: sbResponse)
if success == false {
var statusCode: Int = http.lastStatus.intValue
if statusCode == 0 {
// We did not get a response from the server..
print("\(http.lastErrorText!)")
}
else {
// We received a response, but it was an error.
print("Error response status code: \(statusCode)")
print("Error response:")
print("\(sbResponse.getAsString()!)")
}
return
}
let jsonResp = CkoJsonObject()!
jsonResp.loadSb(sb: sbResponse)
jsonResp.emitCompact = false
print("\(jsonResp.emit()!)")
// The output looks like this:
// {
// "value": [
// {
// "id": "https://kvchilkat.vault.azure.net/certificates/BadSSL",
// "x5t": "U04xLnb8Ww7BKkW9dD7P1cCHNDY",
// "attributes": {
// "enabled": true,
// "nbf": 1674409014,
// "exp": 1737481014,
// "created": 1697294224,
// "updated": 1697294224
// },
// "subject": ""
// },
// {
// "id": "https://kvchilkat.vault.azure.net/certificates/Brasil",
// "x5t": "ayF5eBtlA35xPMivusE0wpmFjnA",
// "attributes": {
// "enabled": true,
// "nbf": 1667830002,
// "exp": 1699366002,
// "created": 1697294090,
// "updated": 1697294090
// },
// "subject": ""
// }
// ],
// "nextLink": null
// }
// Use this online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
var id: String?
var x5t: String?
var Enabled: Bool
var Nbf: Int
var Exp: Int
var Created: Int
var Updated: Int
var subject: String?
var i: Int = 0
var count_i: Int = jsonResp.size(ofArray: "value").intValue
while i < count_i {
jsonResp.i = i
id = jsonResp.string(of: "value[i].id")
x5t = jsonResp.string(of: "value[i].x5t")
Enabled = jsonResp.bool(of: "value[i].attributes.enabled")
Nbf = jsonResp.int(of: "value[i].attributes.nbf").intValue
Exp = jsonResp.int(of: "value[i].attributes.exp").intValue
Created = jsonResp.int(of: "value[i].attributes.created").intValue
Updated = jsonResp.int(of: "value[i].attributes.updated").intValue
subject = jsonResp.string(of: "value[i].subject")
i = i + 1
}
}