1

我正在尝试通过使用有效用户 ID 更改 android HelloMonkey 几天来拨打电话,当我拨打电话时出现错误“拨打电话时帐户 SID 不能为空”我的代码就像

    public void connect(String phoneNumber) {
    Map<String, String> parameters = new HashMap<String, String>();
    parameters.put("PhoneNumber", phoneNumber);
    if (device == null){
        Log.w("", "Failed device == null");
    }else{
        Log.w("", "device != null");
    }
    connection = device.connect(parameters, null /* ConnectionListener */);
    if (connection == null)
        Log.w(TAG, "Failed to create new connection");
}

什么都没有找到 null

请帮忙。提前致谢

4

1 回答 1

1

不要使用键名作为“PhoneNumber”,而是使用“To”作为 Map 参数的键。

public void connect(String phoneNumber) {
    Map<String, String> parameters = new HashMap<String, String>();
    parameters.put("To", phoneNumber);
    connection = device.connect(parameters, null /* ConnectionListener */);
    if (connection == null)
        Log.w(TAG, "Failed to create new connection");
}

适用于安卓的 Twilio 客户端

于 2015-06-22T06:14:47.250 回答