Objective-C
Objective-C
Banco Inter Obtendo uma lista de boletos
See more Banco Inter Examples
Get a list of tickets that match the search criteria.Chilkat Objective-C Downloads
#import <CkoHttp.h>
#import <CkoCert.h>
#import <CkoBinData.h>
#import <NSString.h>
#import <CkoPrivateKey.h>
#import <CkoJsonObject.h>
#import <CkoHttpResponse.h>
#import <CkoStringBuilder.h>
BOOL success = NO;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkoHttp *http = [[CkoHttp alloc] init];
// Implements the following CURL command:
// curl \
// -X GET \
// -H "Authorization: Bearer $TOKEN" \
// --cert <nome arquivo certificado>.crt \
// --key <nome arquivo chave privada>.key \
// --get \
// --data-urlencode "dataInicial=2022-04-01" \
// --data-urlencode "dataFinal=2022-04-03" \
// --data-urlencode "situacao=VENCIDO" \
// --data-urlencode "tipoOrdenacao=ASC" \
// --data-urlencode "itensPorPagina=10" \
// --data-urlencode "paginaAtual=2" \
// https://cdpj.partners.bancointer.com.br/cobranca/v2/boletos
// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code
CkoCert *cert = [[CkoCert alloc] init];
success = [cert LoadFromFile: @"<nome arquivo certificado>.crt"];
if (success == NO) {
NSLog(@"%@",cert.LastErrorText);
return;
}
CkoBinData *bdPrivKey = [[CkoBinData alloc] init];
success = [bdPrivKey LoadFile: @"<nome arquivo chave privada>.key"];
if (success == NO) {
NSLog(@"%@",@"Failed to load key");
return;
}
// Note: If your private key file requires a password, then set it here.
// Otherwise pass the empty string.
NSString *privKeyPassword = @"";
CkoPrivateKey *privKey = [[CkoPrivateKey alloc] init];
success = [privKey LoadAnyFormat: bdPrivKey password: privKeyPassword];
if (success == NO) {
NSLog(@"%@",privKey.LastErrorText);
return;
}
success = [cert SetPrivateKey: privKey];
if (success == NO) {
NSLog(@"%@",cert.LastErrorText);
return;
}
[http SetSslClientCert: cert];
CkoJsonObject *queryParams = [[CkoJsonObject alloc] init];
[queryParams UpdateString: @"dataInicial" value: @"2022-04-01"];
[queryParams UpdateString: @"dataFinal" value: @"2022-04-03"];
[queryParams UpdateString: @"situacao" value: @"VENCIDO"];
[queryParams UpdateString: @"tipoOrdenacao" value: @"ASC"];
[queryParams UpdateInt: @"itensPorPagina" value: [NSNumber numberWithInt: 10]];
[queryParams UpdateInt: @"paginaAtual" value: [NSNumber numberWithInt: 2]];
// Adds the "Authorization: Bearer $TOKEN" header.
http.AuthToken = @"$TOKEN";
CkoHttpResponse *resp = [[CkoHttpResponse alloc] init];
success = [http HttpParams: @"GET" url: @"https://cdpj.partners.bancointer.com.br/cobranca/v2/boletos" json: queryParams response: resp];
if (success == NO) {
NSLog(@"%@",http.LastErrorText);
return;
}
CkoStringBuilder *sbResponseBody = [[CkoStringBuilder alloc] init];
[resp GetBodySb: sbResponseBody];
CkoJsonObject *jResp = [[CkoJsonObject alloc] init];
[jResp LoadSb: sbResponseBody];
jResp.EmitCompact = NO;
NSLog(@"%@",@"Response Body:");
NSLog(@"%@",[jResp Emit]);
int respStatusCode = [resp.StatusCode intValue];
NSLog(@"%@%d",@"Response Status Code = ",respStatusCode);
if (respStatusCode >= 400) {
NSLog(@"%@",@"Response Header:");
NSLog(@"%@",resp.Header);
NSLog(@"%@",@"Failed.");
return;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "totalPages": 1,
// "totalElements": 58,
// "last": true,
// "first": true,
// "size": 100,
// "numberOfElements": 58,
// "content": [
// {
// "nomeBeneficiario": "nome do beneficiario 1",
// "cnpjCpfBeneficiario": "CNPJ/CPF beneficiario 1"
// },
// {
// "nomeBeneficiario": "nome do beneficiario 2",
// "cnpjCpfBeneficiario": "CNPJ/CPF beneficiario 2"
// },
// {
// "nomeBeneficiario": "nome do beneficiario N",
// "cnpjCpfBeneficiario": "CNPJ/CPF beneficiario N"
// }
// ]
// }
// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
NSString *nomeBeneficiario = 0;
NSString *cnpjCpfBeneficiario = 0;
int totalPages = [[jResp IntOf: @"totalPages"] intValue];
int totalElements = [[jResp IntOf: @"totalElements"] intValue];
BOOL last = [jResp BoolOf: @"last"];
BOOL first = [jResp BoolOf: @"first"];
int size = [[jResp IntOf: @"size"] intValue];
int numberOfElements = [[jResp IntOf: @"numberOfElements"] intValue];
int i = 0;
int count_i = [[jResp SizeOfArray: @"content"] intValue];
while (i < count_i) {
jResp.I = [NSNumber numberWithInt: i];
nomeBeneficiario = [jResp StringOf: @"content[i].nomeBeneficiario"];
cnpjCpfBeneficiario = [jResp StringOf: @"content[i].cnpjCpfBeneficiario"];
i = i + 1;
}