Sample code for 30+ languages & platforms
Objective-C

MercadoLibre - Consultar mis datos personales

See more MercadoLibre Examples

Consultar mis datos personales

Chilkat Objective-C Downloads

Objective-C
#import <CkoHttp.h>
#import <CkoJsonObject.h>
#import <CkoStringBuilder.h>
#import <NSString.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];

//  First get our previously obtained OAuth2 access token.
CkoJsonObject *jsonToken = [[CkoJsonObject alloc] init];
success = [jsonToken LoadFile: @"qa_data/tokens/mercadolibre.json"];

//  Implements the following CURL command:

//  curl - X GET https://api.mercadolibre.com/users/me?access_token=$ACCESS_TOKEN

//  Use the following online tool to generate HTTP code from a CURL command
//  Convert a cURL Command to HTTP Source Code

[http SetUrlVar: @"access_token" value: [jsonToken StringOf: @"access_token"]];

CkoStringBuilder *sbResponseBody = [[CkoStringBuilder alloc] init];
success = [http QuickGetSb: @"https://api.mercadolibre.com/users/me?access_token={$access_token}" sbContent: sbResponseBody];
if (success == NO) {
    NSLog(@"%@",http.LastErrorText);
    return;
}

CkoJsonObject *jResp = [[CkoJsonObject alloc] init];
[jResp LoadSb: sbResponseBody];
jResp.EmitCompact = NO;

NSLog(@"%@",@"Response Body:");
NSLog(@"%@",[jResp Emit]);

int respStatusCode = [http.LastStatus intValue];
NSLog(@"%@%d",@"Response Status Code = ",respStatusCode);
if (respStatusCode >= 400) {
    NSLog(@"%@",@"Response Header:");
    NSLog(@"%@",http.LastHeader);
    NSLog(@"%@",@"Failed.");
    return;
}

//  Sample JSON response:
//  (Sample code for parsing the JSON response is shown below)

//  {
//    "id": 202593498,
//    "nickname": "TETE2870021",
//    "registration_date": "2016-01-06T11: 31: 42.000-04: 00",
//    "country_id": "AR",
//    "address": {
//      "state": "AR-C",
//      "city": "Palermo"
//    },
//    "user_type": "normal",
//    "tags": [
//      "normal",
//      "test_user",
//      "user_info_verified"
//    ],
//    "logo": null,
//    "points": 100,
//    "site_id": "MLA",
//    "permalink": "http://perfil.mercadolibre.com.ar/TETE2870021",
//    "seller_reputation": {
//      "level_id": null,
//      "power_seller_status": null,
//      "transactions": {
//        "period": "historic",
//        "total": 0,
//        "completed": 0,
//        "canceled": 0,
//        "ratings": {
//          "positive": 0,
//          "negative": 0,
//          "neutral": 0
//        }
//      }
//    },
//    "buyer_reputation": {
//      "tags": [
//      ]
//    },
//    "status": {
//      "site_status": "active"
//    }
//  }

//  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 *strVal = 0;

int id = [[jResp IntOf: @"id"] intValue];
NSString *nickname = [jResp StringOf: @"nickname"];
NSString *registration_date = [jResp StringOf: @"registration_date"];
NSString *country_id = [jResp StringOf: @"country_id"];
NSString *addressState = [jResp StringOf: @"address.state"];
NSString *addressCity = [jResp StringOf: @"address.city"];
NSString *user_type = [jResp StringOf: @"user_type"];
NSString *logo = [jResp StringOf: @"logo"];
int points = [[jResp IntOf: @"points"] intValue];
NSString *site_id = [jResp StringOf: @"site_id"];
NSString *permalink = [jResp StringOf: @"permalink"];
NSString *seller_reputationLevel_id = [jResp StringOf: @"seller_reputation.level_id"];
NSString *seller_reputationPower_seller_status = [jResp StringOf: @"seller_reputation.power_seller_status"];
NSString *seller_reputationTransactionsPeriod = [jResp StringOf: @"seller_reputation.transactions.period"];
int seller_reputationTransactionsTotal = [[jResp IntOf: @"seller_reputation.transactions.total"] intValue];
int seller_reputationTransactionsCompleted = [[jResp IntOf: @"seller_reputation.transactions.completed"] intValue];
int seller_reputationTransactionsCanceled = [[jResp IntOf: @"seller_reputation.transactions.canceled"] intValue];
int seller_reputationTransactionsRatingsPositive = [[jResp IntOf: @"seller_reputation.transactions.ratings.positive"] intValue];
int seller_reputationTransactionsRatingsNegative = [[jResp IntOf: @"seller_reputation.transactions.ratings.negative"] intValue];
int seller_reputationTransactionsRatingsNeutral = [[jResp IntOf: @"seller_reputation.transactions.ratings.neutral"] intValue];
NSString *statusSite_status = [jResp StringOf: @"status.site_status"];
int i = 0;
int count_i = [[jResp SizeOfArray: @"tags"] intValue];
while (i < count_i) {
    jResp.I = [NSNumber numberWithInt: i];
    strVal = [jResp StringOf: @"tags[i]"];
    i = i + 1;
}

i = 0;
count_i = [[jResp SizeOfArray: @"buyer_reputation.tags"] intValue];
while (i < count_i) {
    jResp.I = [NSNumber numberWithInt: i];
    i = i + 1;
}