Questions tagged [sms]

Short Message Service (SMS) is the standardized text communication service component of phone, web or mobile communication systems that allow the exchange of short text messages between fixed line or mobile phone devices.

Short Message Service (SMS) is the text communication service component of phone, web or mobile communication systems, using standardized communications protocols that allow the exchange of short text messages between fixed line or mobile phone devices.

The term SMS is used as a synonym for all types of short text messaging as well as the user activity itself in many parts of the world.

Source

7611 questions
2
votes
0 answers

how to avoid "This may cause charges on your mobile account"

my app send a sms when open it. app ask permission to send sms when it install. But when app launch this pop up comes. so anyway to avoid this pop up.?Click to see image I have mentioned about charges in app description. so this warning is…
Thunga
  • 63
  • 1
  • 9
2
votes
0 answers

Android SmsManager fail to send

I am working with this code - private void sendSMS(String phoneNumber, String message) { String SENT = "SMS_SENT"; String DELIVERED = "SMS_DELIVERED"; PendingIntent sentPI = PendingIntent.getBroadcast(this, 0, new…
Leonar Aung
  • 149
  • 1
  • 8
2
votes
2 answers

connecting computer to a mobile phone - reading sms and use it?

I've absolutely no idea if this is possible and how it would work. is it possible to give users a phonenumber where they should send an sms to. e.g. the sms contains name some code i want to track how many sms are sent to this number. i want to…
matt
  • 42,713
  • 103
  • 264
  • 397
2
votes
3 answers

running a URL in browser without opening browser using java

I have a url that sends sms when we run that url in browser. I tried this in java. following is my code: URL myURL = new URL("http://example.com/"); URLConnection myURLConnection = myURL.openConnection(); myURLConnection.connect(); I want to run…
prateek k
  • 137
  • 2
  • 15
2
votes
3 answers

SIM800 gsm Module returns 0 on AT+COPS?

I am using SIM800 Module with Arduino Micro. It reponds well to basic AT commands. But i am unable to send SMS from this module as: AT+CMGF=1 ERROR Now while further debugging i saw AT+COPS? Returns 0, means not connected to any operator. That may…
navjosh
  • 187
  • 2
  • 2
  • 13
2
votes
2 answers

Runtime Permission in Redmi Phone

I am trying to send sms targeted version 24 with runtime permission. It gives SecurityException in Redmi Mi 3s device but working fine on other device with Marshmallow OS. final int REQ_CODE = 100; void requestPermission(){ if…
2
votes
0 answers

What's wrong with Nexus 5x and hangouts?

My android app doesn't work on my phone. I have a Nexus 5x but it works on two of my friend's phone, which is a Samsung Galaxy S6 and LG V10. I have no idea what is going on. I can send messages but I cannot receive only on my phone. On my friend's…
jakepurple13
  • 144
  • 2
  • 8
2
votes
1 answer

Broadcast Receiver for RECEIVE_SMS is not working when declared in manifest(statically)

I am trying to detect SMS received and read it via texttospeech. when i declare the Broadcast Receiver in manifest it doesn't work. But it works when done dynamically in an activity. I am aware that some Broadcast actions cant be caught in a…
Anil P Babu
  • 1,235
  • 3
  • 26
  • 47
2
votes
0 answers

django twilio for number phone confirmation returns exception in send function

I got an exception when i create a sms to send here is my functions def send_sms(to_number, body): account_sid = settings.TWILIO_ACCOUNT_SID auth_token = settings.TWILIO_AUTH_TOKEN twilio_number = '+15005550006' client =…
Afaf
  • 654
  • 1
  • 5
  • 17
2
votes
1 answer

Is there a way to associate original SMS sent and a reply SMS received by a Twilio number?

I have an application where I use Twilio to send an SMS to a list of phone numbers which is triggered by an event. This works fine. Now, I need to extend this feature such that, if any one of the recipients do reply to the original message, My…
Jose Francis
  • 950
  • 13
  • 28
2
votes
1 answer

How to Auto send SMS via Broadband USB dongle?

One of my internet connections is via a USB dongle. As well as accessing the internet I can use the SIM card contained inside to send SMS texts in the exact same fashion as a SIM card housed in my mobile phone. (I know, I really am a technical…
Unz
  • 23
  • 1
  • 3
2
votes
3 answers

How to Filter/Extract Code from SMS (Android)

So i'm working on a WhatsApp like verification system where user inputs the code received via sms and code is sent back to the server..yada yada ..all that basic stuff. My dilemma is that i have received and read the sms correctly. How do i filter…
Mueyiwa Moses Ikomi
  • 1,069
  • 2
  • 12
  • 26
2
votes
0 answers

Prevent bots from registering accounts to prevent sending costly sms

I am a little bit confused I am working on an Android application, where the user has to create an account by entering his phone number. We want to validate the phone number by sending a sms to the number with a unique hash, that must then be sent…
skaldesh
  • 1,325
  • 3
  • 15
  • 37
2
votes
4 answers

Receiving a SMS message in a .NET application

I need to write a .NET application that listens to a SMS message , and then react to it. I assume i need a SMS gateway to interface between my application and the sender of the SMS. How could i implement this . Would the listening program need to be…
Chakravarthy R
2
votes
1 answer

Choose among SMS, WhatsApp, or Telegram to send message

At a contact list in my Android app, there is an option to launch WhatsApp implemented as follows: // Country code is required final String phoneNumber = "+15555555555"; final String packageName = "com.whatsapp"; Intent intent =…
JP Ventura
  • 5,564
  • 6
  • 52
  • 69
1 2 3
99
100