Hi to all!
I have to send sms from my application in this way Using Rest Api of our provider.
Using this command from ubuntu (in my windows10) it works fine
curl --location 'https://app.xxxxxxx.it/API/v1.0/REST/sms' \
--header 'user_key: 9999999' \
--header 'Access_token: TOKENALFANUMERICO' \
--header 'Content-Type: application/json' \
--data '{
"recipient": [
"+393123456789"
],
"message": "Ths is a Test",
"sender": "MarcoBoschi",
"message_type": "n"
}'
How can I launch this command from a fivewin program?
Many Thanks to all
Marco