Comment passer un appel téléphonique en utilisant l'intention dans Android?

J'utilise le code suivant pour passer un appel sur Android, mais cela me donne une exception de sécurité, aidez-moi. posted_by = "111-333-222-4"; String uri = "tel:" + posted_by.trim() ; Intent intent = new Intent(Intent.ACTION_CALL); intent.setData(Uri.parse(uri)); startActivity(intent);...