I can't find any reference/documentation how to get a list of SMS messages using WebWorks (for smartphone)? Is it possible?
I want to create my own app using WebWorks, im trying to find a way to get a list of SMS messages.
Sorry for late reply.
It's not possible to get list of sms even in native java application. You can only listen for incoming sms. But not sms that already received.
Related
Is there anyway to send the same text to multiple contacts not as a group text. I have been told that it would need a server to accomplish this. If that is the case I would like to be able to still send texts from my current number not a new number. I have checked out Twilio but have not gotten very far.
Twilio developer evangelist here.
You cannot send mass text messages using Twilio and your existing phone number.
One option you might have is, if you have a Mac you can control the SMS app programmatically to send lots of SMS messages. Here's a blog post with some example code to do that: https://www.twilio.com/blog/2017/06/drawing-pixel-art-text-messages-signal-video-wall.html
That might not be of much help, but while you can send lots of SMS messages with Twilio, you cannot do so using your existing number.
Yes you could send mass texts out to different numbers using twilio. No you could not use your current number.
You would have to purchase a new twilio number that has SMS messaging enabled.
Look at the Twilio documentation and their get started guide, figure out the language you want to create your server in and you will be sending texts in no time. https://www.twilio.com/docs/quickstart/node/programmable-sms You would run the webserver. Twilio does not offer a swift or ios based SMS solution.
https://www.twilio.com/docs/quickstart?filter-language=swift
I am working on a sms application, in which i have used folder listener to access the Inbox sms.
I want to read all the sms present in the inbox at a time. Is it possible to do this, because what i have done is to read incoming sms.
When a sms added in the Inbox folder we can catch that event but here I want ot read all the sms from Inbox.
Please suggest me the solution or some fruity sample code.
Thanxsss a ton in advance...!
There is no way to read already received sms-messages. The only way is to implement MessageListener and intercept incoming sms-messages to process them.
I want to read SMS messages from Inbox,Draft,and sent from my blackberry device programmatically.
Would any one will help me.
There is only way to access SMS messages, implement MessageListener and intercept messages when they are sending/receiving. There is no API to access SMS messages already saved in device memory (i.e already received).
See the BlackBerry Developers Knowledge Base article:
What is - Different ways to listen for SMS messages
Is there any way to delete incoming message like Android is doing?.Please give any solution to delete incoming message on MessageListner.
Thanks,
BlackBerry SDK API does not contain functionality to delete SMS from the device.
Have you tried this: Intercept incoming SMS ?
It explains how to receive messages and prevent them from going to inbox
Can anyone please help me .... I need the full code.
Folder containing inbox ... and i need to count the unread sms there.
Seems like it's not possible.
How to Read SMS inbox (Not for mail messages):
This is not possible under the current api, you can access them before they hit the sms >inbox but you cant read back into the inbox
...
There is no way to access SMS once they hit the inbox.
Access all SMS in my inbox through API:
sms: no
mails: yes. take a look at the developer guide for details
...
you can not access any stored sms programatically.
you can intercept incoming sms, but that's it.
it is possible to read them from a backup file on your pc though.
Accessing SMS folders viz Inbox,Drafts etc:
This is not supported on BlackBerry. You can capture messages as they arrive, but can not >access SMS messages stored on the BlackBerry.
Mark Sohm
BlackBerry Development Advisor
www.BlackBerryDeveloper.com
...
It is not possible to programmatically access SMS folders. SMS messages can only be >captured as they arrive.
Mark Sohm
BlackBerry Development Advisor
www.BlackBerryDeveloper.com
All we can do is handle incoming SMS