Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Visual FoxPro Web API Examples

Primary Categories

ABN AMRO
AWS Secrets Manager
AWS Security Token Service
AWS Translate
Activix CRM
Adyen
Alibaba Cloud OSS
Amazon Cognito
Amazon DynamoDB
Amazon MWS
Amazon Pay
Amazon Rekognition
Amazon SP-API
Amazon Voice ID
Aruba Fatturazione
Azure Maps
Azure Monitor
Azure OAuth2
Azure Storage Accounts
Backblaze S3
Banco Inter
Belgian eHealth Platform
Bitfinex v2 REST
Bluzone
BrickLink
Bunny CDN
CallRail
CardConnect
Cerved
ClickBank
Clickatell
Cloudfare
Constant Contact
DocuSign
Duo Auth MFA
ETrade
Ecwid
Egypt ITIDA
Egypt eReceipt
Etsy
Facebook
Faire
Frame.io
GeoOp
GetHarvest
Global Payments
Google People
Google Search Console
Google Translate
Hungary NAV Invoicing
IBM Text to Speech
Ibanity
IntakeQ
Jira
Lightspeed
MYOB
Magento
Mailgun
Mastercard

MedTunnel
MercadoLibre
MessageMedia
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
OpenAI ChatGPT
PRODA
PayPal
Paynow.pl
Peoplevox
Populi
QuickBooks
Rabobank
Refinitiv
Royal Mail OBA
SCiS Schools Catalogue
SII Chile
SMSAPI
SOAP finkok.com
SendGrid
Shippo
Shopify
Shopware
Shopware 6
SimpleTexting
Square
Stripe
SugarCRM
TicketBAI
Trello
Twilio
Twitter API v2
Twitter v1
UPS
UniPin
VoiceBase
Vonage
WaTrend
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yapily
Yousign
ZATCA
Zendesk
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(Visual FoxPro) MercadoLibre - Consultar mis datos personales

Consultar mis datos personales

For more information, see https://developers.mercadolibre.com.ar/es_ar/servicios-consulta-usuarios

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

LOCAL loHttp
LOCAL loJsonToken
LOCAL lnSuccess
LOCAL loSbResponseBody
LOCAL loJResp
LOCAL lnRespStatusCode
LOCAL lcStrVal
LOCAL lnId
LOCAL lcNickname
LOCAL lcRegistration_date
LOCAL lcCountry_id
LOCAL lcAddressState
LOCAL lcAddressCity
LOCAL lcUser_type
LOCAL lcLogo
LOCAL lnPoints
LOCAL lcSite_id
LOCAL lcPermalink
LOCAL lcSeller_reputationLevel_id
LOCAL lcSeller_reputationPower_seller_status
LOCAL lcSeller_reputationTransactionsPeriod
LOCAL lnSeller_reputationTransactionsTotal
LOCAL lnSeller_reputationTransactionsCompleted
LOCAL lnSeller_reputationTransactionsCanceled
LOCAL lnSeller_reputationTransactionsRatingsPositive
LOCAL lnSeller_reputationTransactionsRatingsNegative
LOCAL lnSeller_reputationTransactionsRatingsNeutral
LOCAL lcStatusSite_status
LOCAL i
LOCAL lnCount_i

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

loHttp = CreateObject('Chilkat_9_5_0.Http')

* First get our previously obtained OAuth2 access token.
loJsonToken = CreateObject('Chilkat_9_5_0.JsonObject')
lnSuccess = loJsonToken.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

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

loSbResponseBody = CreateObject('Chilkat_9_5_0.StringBuilder')
lnSuccess = loHttp.QuickGetSb("https://api.mercadolibre.com/users/me?access_token={$access_token}",loSbResponseBody)
IF (lnSuccess = 0) THEN
    ? loHttp.LastErrorText
    RELEASE loHttp
    RELEASE loJsonToken
    RELEASE loSbResponseBody
    CANCEL
ENDIF

loJResp = CreateObject('Chilkat_9_5_0.JsonObject')
loJResp.LoadSb(loSbResponseBody)
loJResp.EmitCompact = 0

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

lnRespStatusCode = loHttp.LastStatus
? "Response Status Code = " + STR(lnRespStatusCode)
IF (lnRespStatusCode >= 400) THEN
    ? "Response Header:"
    ? loHttp.LastHeader
    ? "Failed."
    RELEASE loHttp
    RELEASE loJsonToken
    RELEASE loSbResponseBody
    RELEASE loJResp
    CANCEL
ENDIF

* 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

lnId = loJResp.IntOf("id")
lcNickname = loJResp.StringOf("nickname")
lcRegistration_date = loJResp.StringOf("registration_date")
lcCountry_id = loJResp.StringOf("country_id")
lcAddressState = loJResp.StringOf("address.state")
lcAddressCity = loJResp.StringOf("address.city")
lcUser_type = loJResp.StringOf("user_type")
lcLogo = loJResp.StringOf("logo")
lnPoints = loJResp.IntOf("points")
lcSite_id = loJResp.StringOf("site_id")
lcPermalink = loJResp.StringOf("permalink")
lcSeller_reputationLevel_id = loJResp.StringOf("seller_reputation.level_id")
lcSeller_reputationPower_seller_status = loJResp.StringOf("seller_reputation.power_seller_status")
lcSeller_reputationTransactionsPeriod = loJResp.StringOf("seller_reputation.transactions.period")
lnSeller_reputationTransactionsTotal = loJResp.IntOf("seller_reputation.transactions.total")
lnSeller_reputationTransactionsCompleted = loJResp.IntOf("seller_reputation.transactions.completed")
lnSeller_reputationTransactionsCanceled = loJResp.IntOf("seller_reputation.transactions.canceled")
lnSeller_reputationTransactionsRatingsPositive = loJResp.IntOf("seller_reputation.transactions.ratings.positive")
lnSeller_reputationTransactionsRatingsNegative = loJResp.IntOf("seller_reputation.transactions.ratings.negative")
lnSeller_reputationTransactionsRatingsNeutral = loJResp.IntOf("seller_reputation.transactions.ratings.neutral")
lcStatusSite_status = loJResp.StringOf("status.site_status")
i = 0
lnCount_i = loJResp.SizeOfArray("tags")
DO WHILE i < lnCount_i
    loJResp.I = i
    lcStrVal = loJResp.StringOf("tags[i]")
    i = i + 1
ENDDO
i = 0
lnCount_i = loJResp.SizeOfArray("buyer_reputation.tags")
DO WHILE i < lnCount_i
    loJResp.I = i
    i = i + 1
ENDDO

RELEASE loHttp
RELEASE loJsonToken
RELEASE loSbResponseBody
RELEASE loJResp


 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.