Call WebApp APIs?
Posted: Mon Dec 08, 2014 10:00 pm
Hi there,
I want to build an App in LiveCode which connects to a webservice/-app via their webservice-API.
The webservice owner says:
Is this possible in LiveCode?
I want to build an App in LiveCode which connects to a webservice/-app via their webservice-API.
The webservice owner says:
And there's also an example to login:Every API-Request go trough a POST Request with XML or JSON formatted body to a service-url.
Code: Select all
curl -v -X POST \
–u {E-Mail-Adress}:{API-Key} \
-H 'Content-Type: application/xml' \
-d '{xml body}' \
https://serviceiurl.com/api.php