Sample code for 30+ languages & platforms
Lianja

MercadoLibre - Create Test User

See more MercadoLibre Examples

Crea un usuario de test

Chilkat Lianja Downloads

Lianja
llSuccess = .F.

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

loHttp = createobject("CkHttp")

// First get our previously obtained OAuth2 access token.
loJsonToken = createobject("CkJsonObject")
llSuccess = loJsonToken.LoadFile("qa_data/tokens/mercadolibre.json")

// Implements the following CURL command:

// curl -X POST -H "Content-Type: application/json" -d
// '{
//    	"site_id":"MLA"
// }'
// https://api.mercadolibre.com/users/test_user?access_token=MY_ACCESS_TOKEN

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

// Use this online tool to generate code from sample JSON:
// Generate Code to Create JSON

// The following JSON is sent in the request body.

// {
//   "site_id": "MLA"
// }

loJson = createobject("CkJsonObject")
loJson.UpdateString("site_id","MLA")

loHttp.SetRequestHeader("Content-Type","application/json")

loHttp.SetUrlVar("access_token",loJsonToken.StringOf("access_token"))

loResp = createobject("CkHttpResponse")
llSuccess = loHttp.HttpJson("POST","https://api.mercadolibre.com/users/test_user?access_token={$access_token}",loJson,"application/json",loResp)
if (llSuccess = .F.) then
    ? loHttp.LastErrorText
    release loHttp
    release loJsonToken
    release loJson
    release loResp
    return
endif

loSbResponseBody = createobject("CkStringBuilder")
loResp.GetBodySb(loSbResponseBody)
loJResp = createobject("CkJsonObject")
loJResp.LoadSb(loSbResponseBody)
loJResp.EmitCompact = .F.

? "Response Body:"
? loJResp.Emit()

// A response status code of 201 indicates success.
lnRespStatusCode = loResp.StatusCode
? "Response Status Code = " + str(lnRespStatusCode)
if (lnRespStatusCode >= 400) then
    ? "Response Header:"
    ? loResp.Header
    ? "Failed."
    release loHttp
    release loJsonToken
    release loJson
    release loResp
    release loSbResponseBody
    release loJResp
    return
endif

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

// {
//   "id": 577815702,
//   "nickname": "TETE5320415",
//   "password": "qatest4890",
//   "site_status": "active",
//   "email": "test_user_80450945@testuser.com"
// }

// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON

lnId = loJResp.IntOf("id")
lcNickname = loJResp.StringOf("nickname")
lcPassword = loJResp.StringOf("password")
lcSite_status = loJResp.StringOf("site_status")


release loHttp
release loJsonToken
release loJson
release loResp
release loSbResponseBody
release loJResp