Receiving SMS and MMS
| Python | Node | Ruby |Inbound texts are delivered via a webhook to your server. The webhook will be an HTTP
POST request that includes a payload with information about the inbound SMS or MMS. To receive the message, you’ll need to create a minimal web application that will accept the webhook request.
Python
Prerequisites
Check out the API prerequisites to setup your Python development environment for this guide.Receive an SMS or MMS with Telnyx
- First, you’ll need to install Flask, a minimal web framework written in Python.
pip install flask
After pasting the above content, Kindly check and remove any new line added
- Create a Flask application to accept webhooks. Create a new file called receive.py and copy the code below into the file:
After pasting the above content, Kindly check and remove any new line added
After pasting the above content, Kindly check and remove any new line added
receive.py file.
After pasting the above content, Kindly check and remove any new line added
__name__ as the name of the Flask application.
After pasting the above content, Kindly check and remove any new line added
/webhooks and specify that the path will respond to the HTTP POST method. This route will accept webhooks from Telnyx when your Telnyx number receives an SMS or MMS.
After pasting the above content, Kindly check and remove any new line added
After pasting the above content, Kindly check and remove any new line added
__main__, and if it is, starts the application on the port 5000.
After pasting the above content, Kindly check and remove any new line added
- Now that you’ve set up your application, make sure it’s ready to receive requests. From your terminal, run the below:
After pasting the above content, Kindly check and remove any new line added
After pasting the above content, Kindly check and remove any new line added
- The final step involves making your application accessible from the internet. So far, we’ve set up a local web server. This is typically not accessible from the public internet, making testing inbound requests to web applications difficult.
The best workaround is a tunneling service. They come with client software that runs on your computer and opens an outgoing permanent connection to a publicly available server in a data center. Then, they assign a public URL (typically on a random or custom subdomain) on that server to your account. The public server acts as a proxy that accepts incoming connections to your URL, forwards (tunnels) them through the already established connection and sends them to the local web server as if they originated from the same machine. The most popular tunneling tool is ngrok. Check out the ngrok setup walkthrough to set it up on your computer and start receiving webhooks from inbound messages to your newly created application.
- Once you’ve set up
ngrokor another tunneling service you can add the public proxy URL to your Messaging Profile. To do this, click the edit symbol [✎] next to your Messaging Profile. Under “Inbound”, paste the forwarding address from ngrok into the Webhook URL field. Add/webhooksto the end of the URL to direct the request to the webhook endpoint in your Flask app.
For now you’ll leave “Failover URL” blank, but if you’d like to have Telnyx resend the webhook in the case where sending to the Webhook URL fails, you can specify an alternate address in this field.
-
Now that your Messaging Profile is configured, you’re ready to receive an SMS or MMS.
Send a message from your phone to your Telnyx number. Soon after you’ll see an event printed in your terminal when the inbound SMS or MMS request is received by your Flask application.
Node
Install dependencies
We will use the express framework to setup a webserver that will receive webhooks. Create a new npm project and installexpress and body-parser. This will allow you to receive incoming HTTP requests
After pasting the above content, Kindly check and remove any new line added
Create an express application to accept webhooks
Now create a new file,receive.js, and import the dependencies.
After pasting the above content, Kindly check and remove any new line added
After pasting the above content, Kindly check and remove any new line added
Handling the request
Then create a POST handler, this should be the same endpoint that you have configured Telnyx to send requests to.After pasting the above content, Kindly check and remove any new line added
After pasting the above content, Kindly check and remove any new line added
After pasting the above content, Kindly check and remove any new line added
After pasting the above content, Kindly check and remove any new line added
ngrok. Check out the ngrok setup walkthrough to set it up on your computer and start receiving webhooks from inbound messages to your newly created application.
Once you’ve set up ngrok or another tunneling service you can add the public proxy URL to your Messaging Profile. To do this, click the edit symbol [✎] next to your Messaging Profile. Under “Inbound”, paste the forwarding address from ngrok into the Webhook URL field. Add /webhooks to the end of the URL to direct the request to the webhook endpoint in your Flask app.
For now you’ll leave “Failover URL” blank, but if you’d like to have Telnyx resend the webhook in the case where sending to the Webhook URL fails, you can specify an alternate address in this field.
Now that your Messaging Profile is configured, you’re ready to receive an SMS or MMS.
Send a message from your phone to your Telnyx number. Soon after you’ll see an event printed in your terminal when the inbound SMS or MMS request is received by your Flask application.
Congrats, you’ve learned how to recieve messages with Telnyx.
Inbound texts are delivered via a webhook to your server. The webhook will be an HTTP POST request that includes a payload with information about the inbound SMS or MMS. To receive the message, you’ll need to create a minimal web application that will accept the webhook request.
Ruby
Install dependencies
First you’ll need to installSinatra, a minimal HTTP server for Ruby.
After pasting the above content, Kindly check and remove any new line added
Create an express application to accept webhooks
Create a Sinatra application to accept webhooks by pasting the following code into a file calledreceive.rb:
After pasting the above content, Kindly check and remove any new line added
Sinatra and JSON libraries available to the application.
After pasting the above content, Kindly check and remove any new line added
/webhooks. This tells sinatra what URL path to handle requests on and the post function specifies POST as the request type.
After pasting the above content, Kindly check and remove any new line added
After pasting the above content, Kindly check and remove any new line added
payload object
After pasting the above content, Kindly check and remove any new line added