Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
How can I send an SMS text message from my cellphone and have it received and processed on my asp.net website? I have no idea where to start.
It really depends on what you want to achieve with your application.
For a more robust solution you would need to use an SMS Gateway provider. I would recommend someone like Clickatell http://www.clickatell.com/products/two_way.php. They have a simple API you can integrate with to send and receive messages via your application.
The drawback here is that you'll need to pay for setup as well as rent a virtual mobile number which will be used for receiving messages.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
I am currently working on an app which will be used to send important messages as fast as possible to multiple people.
I found out that there is such a thing like firebase with which it is possible to send messages from a custom server to iOS and android devices.
But I need a solid and secure solution and firebase is therefore only my plan b. I would prefer a custom solution.
How can I achieve that a message will be sent to a client without firebase? I do not want the client to check for a new message every x seconds. That would be a waste of data. The triggering must come from the server. Can this be achieved using the observer pattern?
Firebase is a online datebase. If you try to choose a db for your app, you can choose insted MongoDB, which have a online version of db.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I have 8000 contacts to send SMS I want to send them SMS can I do it with the help of firebase.
I want to send SMS from online to phone number. can I do this with the help of firebase? without any app installed in their phone.
No, Firebase does not offer general SMS services.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
At the moment I am working with a payment system. After successful payment, the system sends a POST request to my domain with all data about its payment. I should to process this request and add the user's amount to his balance.
My DB is firebase. How I can do this on the server-side.
Use a Firebase Admin SDK with the language of your choice.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
Is there any possibility in Firebase Cloud System to configure messages to be sended for example in a 10 minutes basis without using an external server?
Cron jobs are possible with Firebase Cloud Functions. But you'll have to integrate it with Google App Engine ( at least for now, anyway ).
Check out this blog post by Abe Haskins of the Firebase team.
This should help you too.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have a problem that i could not solve, How I can get a session variable from an external website?
something like: myvariable=session["othersite"];
You have to make web request on server side, that will access external site, and external site has to have endpoint (web service) that will provide it. Also if the session variable value is sensitive, you may want to use symmetric encryption along the way.