VoIP.ms allows you to configure a webhook endpoint that it will call when it receives a message for you. This would allow the bridge to be slightly more real-time, but would add complexity in that it would have to be able to receive HTTP messages. I don't know enough node to have much insight here, but if I have time I might look into it. It might be a nice feature someday. π
Docs can be found on the voip.ms wiki
The parameters that the callback sends are as follows:
{ID} The ID of the SMS message.
{TIMESTAMP} The date and time the message was received.
{FROM} The phone number that sent you the message
{TO} The DID Number that received the message
{MESSAGE} The content of the message
Example: http: //mysite.com/sms.php?to={TO}&from={FROM}&message={MESSAGE}&id={ID}&date={TIMESTAMP}
VoIP.ms allows you to configure a webhook endpoint that it will call when it receives a message for you. This would allow the bridge to be slightly more real-time, but would add complexity in that it would have to be able to receive HTTP messages. I don't know enough node to have much insight here, but if I have time I might look into it. It might be a nice feature someday. π
Docs can be found on the voip.ms wiki
The parameters that the callback sends are as follows: