Lianja
Lianja
SMSAPI - List Contacts
See more SMSAPI Examples
List ContactsChilkat Lianja Downloads
llSuccess = .F.
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loHttp = createobject("CkHttp")
// Implements the following CURL command:
// curl -X GET -H "Authorization: Bearer token_api_oauth" https://api.smsapi.com/contacts?phone_number=48500000000
// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code
// Adds the "Authorization: Bearer token_api_oauth" header.
loHttp.AuthToken = "token_api_oauth"
loSbResponseBody = createobject("CkStringBuilder")
llSuccess = loHttp.QuickGetSb("https://api.smsapi.com/contacts?phone_number=48500000000",loSbResponseBody)
if (llSuccess = .F.) then
? loHttp.LastErrorText
release loHttp
release loSbResponseBody
return
endif
loJResp = createobject("CkJsonObject")
loJResp.LoadSb(loSbResponseBody)
loJResp.EmitCompact = .F.
? "Response Body:"
? loJResp.Emit()
lnRespStatusCode = loHttp.LastStatus
? "Response Status Code = " + str(lnRespStatusCode)
if (lnRespStatusCode >= 400) then
? "Response Header:"
? loHttp.LastHeader
? "Failed."
release loHttp
release loSbResponseBody
release loJResp
return
endif
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "size": 1,
// "collection": [
// {
// "id": "5b83ba81a788494a0469490f",
// "first_name": "name",
// "last_name": "surname",
// "phone_number": "48500000000",
// "email": "bok@smsapi.com",
// "gender": "male",
// "city": "City",
// "country": "Poland",
// "source": "source",
// "date_created": "2018-08-27T10:46:57+02:00",
// "date_updated": "2018-08-27T10:46:57+02:00",
// "groups": [
// {
// "id": "59a3ca1fa78849062837cd0c",
// "name": "default",
// "date_created": "2017-08-28T09:45:35+02:00",
// "date_updated": "2017-08-28T09:45:35+02:00",
// "description": "",
// "created_by": "login",
// "idx": null,
// "contact_expire_after": null,
// "contacts_count": null
// }
// ]
// }
// ]
// }
// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
loDate_created = createobject("CkDtObj")
loDate_updated = createobject("CkDtObj")
lnSize = loJResp.IntOf("size")
i = 0
lnCount_i = loJResp.SizeOfArray("collection")
do while i < lnCount_i
loJResp.I = i
lcId = loJResp.StringOf("collection[i].id")
lcFirst_name = loJResp.StringOf("collection[i].first_name")
lcLast_name = loJResp.StringOf("collection[i].last_name")
lcPhone_number = loJResp.StringOf("collection[i].phone_number")
lcEmail = loJResp.StringOf("collection[i].email")
lcGender = loJResp.StringOf("collection[i].gender")
lcCity = loJResp.StringOf("collection[i].city")
lcCountry = loJResp.StringOf("collection[i].country")
lcSource = loJResp.StringOf("collection[i].source")
loJResp.DtOf("collection[i].date_created",.F.,loDate_created)
loJResp.DtOf("collection[i].date_updated",.F.,loDate_updated)
j = 0
lnCount_j = loJResp.SizeOfArray("collection[i].groups")
do while j < lnCount_j
loJResp.J = j
lcId = loJResp.StringOf("collection[i].groups[j].id")
lcName = loJResp.StringOf("collection[i].groups[j].name")
loJResp.DtOf("collection[i].groups[j].date_created",.F.,loDate_created)
loJResp.DtOf("collection[i].groups[j].date_updated",.F.,loDate_updated)
lcDescription = loJResp.StringOf("collection[i].groups[j].description")
lcCreated_by = loJResp.StringOf("collection[i].groups[j].created_by")
lcIdx = loJResp.StringOf("collection[i].groups[j].idx")
lcContact_expire_after = loJResp.StringOf("collection[i].groups[j].contact_expire_after")
lcContacts_count = loJResp.StringOf("collection[i].groups[j].contacts_count")
j = j + 1
enddo
i = i + 1
enddo
release loHttp
release loSbResponseBody
release loJResp
release loDate_created
release loDate_updated