sms

Registering SMS notification on iPhone

本小妞迷上赌 提交于 2020-01-03 04:41:45
问题 Is there a way to implement a method that will notify the app that sms is receivec and then do something, in example turn on the LED light? 回答1: No. Apple would consider this a privacy violation. 回答2: There is no public API that provides access to SMS messages, for privacy reasons. 来源: https://stackoverflow.com/questions/9419982/registering-sms-notification-on-iphone

Grasshopper Voice + Twilio Text

北城余情 提交于 2020-01-03 00:56:24
问题 My company is currently using Grasshopper as our voice system for receiving and routing inbound customer support calls. It's working pretty well. Except that it's 2014 and people expect to be able to text issues to our toll free customer support number and get responses. Grasshopper doesn't support receiving/forwarding SMS. So I want to use Twilio just for receiving inbound text and Grasshopper for voice on the same number . It seems like a number has to be registered either with Twilio or

How do I send SMS from PC to mobile using simplewire for Java?

浪尽此生 提交于 2020-01-02 06:59:08
问题 I am using " simplewire " library (for Java) which should be able to send SMS from PC to mobile. However, I am seeting the following error: Message was not sent! Error Code: 420 Error Description: Invalid Subscriber ID or Subscriber Password. Here is my code sample import com.simplewire.sms.*; public class send_text { public static void main(String[] args) throws Exception { SMS sms = new SMS(); // Subscriber Settings sms.setSubscriberID("123-456-789-12345"); sms.setSubscriberPassword("1234")

SMS gateway for (legally) spoofing SMS messages

谁说我不能喝 提交于 2020-01-02 06:24:10
问题 I'm looking for an SMS gateway to send text messages over an HTTP interface. However, some SMS gateways do not allow to set the sender ID, and those who allow it either require the user to prove that the sender ID is his own mobile phone number, or they manually check each sender ID to prevent SMS Spoofing. For my application, however, I need to be able to set the sender ID as part of the HTTP request. Depending on the number of users, I might have thousands of different sender IDs, and I

Open Graph SMS rich messages on Android and iOS

点点圈 提交于 2020-01-02 05:23:29
问题 I am trying to leverage the rich text messages with open graph meta tags. So I have included my meta tags in my website head and it passes all of the Facebook debug and iOS API validation tool. Yet when I text the link to people either on Android or iOS it doesn't often work. It works typically with Facebook messenger Does anyone know if this is a cell carrier issue or do I have something configured wrong? <meta property="fb:app_id" content="********" /> <meta property="og:type" content=

Ios how can I verify that the phone number entered is actually the users phone number?

不打扰是莪最后的温柔 提交于 2020-01-02 04:01:10
问题 I have seen a couple different apps (Snapchat, whatsapp, etc.) ask users to input their phone number. A text message is then sent to the user with a code to verify that the number is actually their number. Then they are able to see which of the users address book contacts also have the app. I understand how all of this works except how they are sending the text messages to the user. Are they running their own SMS Gateway like Kannel, using an SMS gateway provider like twilio, or am I

How do some SMS messages transmit the senders name?

时间秒杀一切 提交于 2020-01-02 03:42:14
问题 I have noticed that certain SMS messages that I receive from companies come with a 'sender name'. eg. Just today I received an SMS from a number I have never used before (not im my contacts), however the senders name showed up as 'Adobe'. I get this from other companies too. eg Facebook, Google & Banking. Is it similar to how a email server works? (you tell the server who you 'are' before you send the message) Is this the case with a carrier's cell tower? I guess I'm wondering what the

Kannel as SMPP server

霸气de小男生 提交于 2020-01-01 19:23:07
问题 I have created SMS gateway application in which I'm using kannel to connect to MNO(Mobile Network Operators) SMSCs.I have set of clients who are connected to my application given the API (JSON API) and in my application I basically send the request to kannel via its http API. How I have this new clients whose requirement is that his request should go via SMPP protocol as he doesn't feel that JSON API is that much secure as messages can be altered on its way to the recipient. To create SMPP

Receiving SMS with GSM modem

我只是一个虾纸丫 提交于 2020-01-01 18:58:50
问题 I read that a GSM modem can only receive up to 30 SMS per minute. What would you do if you need to receive more than that? Is there another technology? 回答1: I think you might want something different to those answers listed at What are the best practices for building an SMS server If you just have one service that is running where you want to receive many SMS then it would be most cost effective (and simplest) to avoid integrating with a mobile network operator and instead use a SMS

Android passing multiple numbers to SMS intent

99封情书 提交于 2020-01-01 16:11:51
问题 I am getting different numbers from Contacts and passing them to SMS application. I am using the following: Intent intent = new Intent( Intent.ACTION_VIEW, Uri.parse( "sms:"+numbers) ); //numbers separated with ; intent.putExtra( "sms_body", body ); startActivity( intent ); The problem is if I separate numbers with ' ; ', it does not work on Galaxy S but works on others like HTC, Samsung Gio etc... On Galaxy S, it works if I separate numbers with comma ' , '. So how to resolve this issue? 回答1