mirror of
https://github.com/ushahidi/SMSSync.git
synced 2026-04-25 15:55:57 +03:00
[GH-ISSUE #81] Feature request: Extend tasks to also make voice calls #69
Labels
No labels
Bug report
Code improvement
Concern
Feature request
Feature request
Good first issue to work on
In progress
Needs info
Question
Ready
Translation
User Experience
User Experience
Website
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/SMSSync#69
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @leonardoxc on GitHub (Mar 28, 2013).
Original GitHub issue: https://github.com/ushahidi/SMSSync/issues/81
It would be interesting to add the ability to initiate voice calls from a json sync url.
voice calls can be sometimes cheaoer than SMS and can be used as reminders to a group of people for example.
proposed json:
{
"payload": {
"task": "send",
"secret": "secret_key",
"messages": [
{
"to": "+000-000-0000",
"message": "the message goes here"
},
{
"to": "+000-000-0000",
"message": "the message goes here"
}
],
"calls": [
{ "to": "+000-000-0000" },
{ "to": "+000-000-0000" }
]
}
}
@leonardoxc commented on GitHub (Mar 28, 2013):
had a quick look at the code:
file:
src/org/addhen/smssync/util/MessageSyncUtil.java
line 272:
could be
but i have no idea how to write a MAKETHECALL() function