1

有効なユーザーIDを使用してAndroid HelloMonkeyを数日間変更して電話をかけようとしています。電話をかけると、「電話をかけるときにアカウントSIDをnullにすることはできません」というエラーが表示されます私のコードは次のようになります

    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」として使用する代わりに、Map パラメータのキーとして「To」を使用します。

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");
}

Android用Twilioクライアント

于 2015-06-22T06:14:47.250 に答える