i'm building a mobile application that needs to send critical data to a remote database but it may have networks issue in some user's location. I want to know if it's possible wrap up the data in text message and then send a sms server and allow the sms server to post the data in the database. If yes, do you have any Idea how to implement ? Thanks in advance !
How to post data to a sms server (if there is no internet) and then send back from the Sms server to the web server?
246 Views Asked by Gosse Yannick Gbaka At
1
There are 1 best solutions below
Related Questions in DATABASE
- How to add the dynamic new rows from my registration form in my database?
- How to store a date/time in sqlite (or something similar to a date)
- Problem with add new attribute in table with BOTO3 on python
- When an E-R attribute should be perceived as a relationship attribute or as an entity set attribute?
- SQLAlchemy: efficient relationship loading in 3-way many-to-many relationship
- Cannot connect to Postgres Database when running Quarkus Tests with Gitlab ci
- Local or remote database with react-native?
- I want to edit a specific row in database
- How to enter data in mongodb array at specific position such that if there is only 2 data in array and I want to insert at 5, then rest data is null
- Open Web Library
- database login.py and register.py error showing 404 file not found and doesn't work
- SQL71561: SqlComputedColumn: When column selected
- Liquibase as SaaS To Configure Multiple Database as Dynamic
- Updated max input vars but table still shows error
- Spring does not map set of roles
Related Questions in SMS
- AWS - "Signature" for text messages to China
- How to send woocommerce order tracking code with SMS
- How to configure gsm modem for sending sms in text mode with ucs2 set of characters?
- Looking to trigger webhook on all api created sms sent messages w/o passing messaging channel or webhook parameter
- Getting this error on my flutter app while triggering SMS--[SmsRetrieverHelper] SMS verification code request failed: unknown status code: 17093 null
- google reject apps use sms permissions
- Will Twilio help us test demo verification codes via SMS?
- Why isn't my BroadcastReceiver receiving any SMS Messages?
- Getting message status queued while sending SMS using Twilio
- Salesforce Marketing cloud - block incoming SMS replies for a short code that do not map to a keyword
- Intelab smpp client library
- How to validate an incoming webhook GET request from the Twilio API using Node.js
- I did not receive sms verification code from Firebase
- How to set language for a Vonage's sms in Laravel?
- No incoming Sms by SMPP from GoIP1 to Kannel or Ozeki
Related Questions in TWILIO-API
- Stop Audio Stream on Twilio WS - Python
- I want to auto update the Primary handler fails webhook Url using twilio functions, can someone guide me?
- Cann't send back data using websocket for Twilio call
- Trying to send Twilio webhook to Kommo crm
- Looking to trigger webhook on all api created sms sent messages w/o passing messaging channel or webhook parameter
- Migrating from whatsApp Template to Content Builder
- why is Twilio Connect getting weird voice latency with stream(websocket)-python? and how can I fix this?
- How is dependency resolution for "services/functions" supposed to work? My package.json is not being parsed
- How to get call is accepted status in outbond twilio call in twilio voice js sdk?
- What are the restrictions on Twilio worker names?
- Twilio Multiple Active Numbers for WhatsApp Integration
- Nodejs Twilio bi-directional streaming: sending an elevenlabs audio stream to a caller
- How to validate an incoming webhook GET request from the Twilio API using Node.js
- Dynamic number allocation in twilio and business verification
- Error sending message with Twilio and WhatsApp using template: "Failed to send freeform message..."
Related Questions in CLICKATELL
- Dynamic unicode message content
- Empty message content when sending Clickatell SMS via Marketo third-party service
- How to add and verify phone number in clickatell using api
- Empty message content when using Clickatell test template
- sending Video file mp4 via clickatel whatsapp api
- Clickatel reply to a particular message
- Clickatel WhatsApp Integration Unable to Send Images
- How to post data to a sms server (if there is no internet) and then send back from the Sms server to the web server?
- Clickatell messages only delivered when message contains word "test"
- Cannot install laravel-notification-channels/clickatell
- Getting error code 21 on clickatell api request
- Clickatell - WhatsApp Template - One API
- Clickatell Triggering During Market Days
- Getting the message "Message delivery status ERROR_DELIVERING", is there a way to automatically resend the sms?
- Clickatell - Whatsapp integration
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Twilio developer evangelist here.
You can do this using Twilio in an Android application. You would do it by using Android APIs to send an SMS from the app using the device's SIM card (I believe this is possible, though I'm not an Android developer, I have seen it done before). You would send that SMS to a Twilio number that you had bought with your account.
When the Twilio number receives an incoming SMS, Twilio will take all the data about the SMS and package it up as an HTTP request that it sends to a URL you define. That URL should point at your web application and when your application receives the incoming HTTP request can read the data and store it in your database.
To understand more about the SMS to HTTP request flow, I recommend you follow the tutorial on receiving and responding to SMS messages.