Como usar o setEntity no Android Volley?

No httpPost, definimosEntity (new StringEntity). Mas estou usando vôlei agora. Eu gostaria de usar esse método setEntity no vôlei. Como eu posso fazer isso?

Eu gostaria de usá-lo com a API do Twitter assim;

HttpPost httpPost = new HttpPost(TwitterTokenURL);
httpPost.setHeader("Authorization", "Basic " + base64Encoded);
httpPost.setHeader("Content-Type", "application/x-www-form-  urlencoded;charset=UTF-8");
httpPost.setEntity(new StringEntity("grant_type=client_credentials"));

questionAnswers(1)

yourAnswerToTheQuestion