(AutoIt) MercadoLibre - GET Request with Access Token in Query Params
Demonstrates how to send an HTTPS GET request to MercadoLibre with the access token specified as a query parameter.
; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
$oHttp = ObjCreate("Chilkat.Http")
; First get our previously obtained OAuth2 access token.
$oJsonToken = ObjCreate("Chilkat.JsonObject")
Local $bSuccess = $oJsonToken.LoadFile("qa_data/tokens/mercadolibre.json")
If ($bSuccess = False) Then
ConsoleWrite("Failed to load JSON access token." & @CRLF)
Exit
EndIf
; Use your seller ID.
$oHttp.SetUrlVar("SELLER_ID","577815702")
$oHttp.SetUrlVar("ACCESS_TOKEN",$oJsonToken.StringOf("access_token"))
Local $sResponseStr = $oHttp.QuickGetStr("https://api.mercadolibre.com/questions/search?seller_id={$SELLER_ID}&api_version=4&access_token={$ACCESS_TOKEN}")
If ($oHttp.LastMethodSuccess = False) Then
ConsoleWrite($oHttp.LastErrorText & @CRLF)
Exit
EndIf
ConsoleWrite($sResponseStr & @CRLF)
|