.net twitter api Missing required parameter: grant_type:forbidden_missing_parameter
Simply trying to get an access token to Twitter API with a c# .net program. I have composed the http post request as follows (leaving out the catch statements to save space): HttpWebRequest request; request = (HttpWebRequest)WebRequest.Create("https://api.twitter.com/oauth2/token"); request.Method = "POST";…