¿Cómo usar setEntity en Android Volley?

En httpPost establecemosEntity (new StringEntity). Pero estoy usando volley en este momento. Me gustaría usar ese método setEntity en volley. ¿Cómo puedo hacer eso?

Me gustaría usarlo con la API de Twitter como esta;

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