需要使用elixir函数将消息发送到电话号码

时间:2018-03-08 09:00:35

标签: database-design elixir elixir-framework elixir-poison

我是一般的编程新手,目前正在学习Elixir。

如何编写将消息发送到电话号码的功能?我很乐意看到语法。我正在使用Phoenix框架。

我看到了这一点,但它并不是我想要的:

failedOnNote8=false;
try{
    keyGen.Init(keyGenSpec);
}catch (Exception e) {
    if(e.getMessage() != null && e.getMessage().equals("Can't create handler inside thread that has not called Looper.prepare()"))  {
        failedOnNote8 = true;
    }
}
if(failedOnNote8)
{
   //try to init the key on UI Thread.
}

1 个答案:

答案 0 :(得分:0)

假设您正在谈论SMS,最简单的方法是首先订阅像enter image description here这样的消息传递提供程序,并获得一个API密钥。然后,您可以利用他们的REST API发送短信。