Has anyone had experience with the MessageBird company?
I want to make a connection with them to send an SMS message. It is required to create an object in XOJO.
This is done in Python:
import messagebird
ACCESS_KEY = "xxxxxxxxx"
sms_message = "My Message"
try:
# Fetch the Balance object.
client = messagebird.Client(ACCESS_KEY)
......