network Authentication and website Authentication using HttpWebRequest

前端 未结 2 1493
北荒
北荒 2020-12-21 18:47

I am trying to create a application that will consume RSS data using .NET Framework. The RSS site requires User name and Password to start with. and Am running this applicat

2条回答
  •  温柔的废话
    2020-12-21 19:32

    solved the issue by using following code

     string credentials = Convert.ToBase64String(ASCIIEncoding.ASCII.GetBytes("UserName" + ":" + "Password"));
     StringBuilder outputData = new StringBuilder();
     HttpWebRequest myHttpWebRequest = (HttpWebRequest)WebRequest.Create(RSSFeed);
     myHttpWebRequest.Proxy.Credentials = CredentialCache.DefaultNetworkCredentials;
     myHttpWebRequest.Headers.Add("Authorization", "Basic " + credentials);
     HttpWebResponse myHttpWebResponse = (HttpWebResponse)myHttpWebRequest.GetResponse();
     Stream streamResponse = myHttpWebResponse.GetResponseStream();
    

提交回复
热议问题