C#如何通过代码登录到社交网络网站geni.com



我已经阅读了有关需要电子邮件和密码的网站的几篇文章,但是我找不到有关登录的解决方案,以登录到一个名为geni.com的特定网站。有办法吗?

CookieContainer cookie;
string user = "somemail@somehost.com";
string pass = "123456";
string formUrl = "http://www.geni.com/login/";
string formParams = String.Format("profile_username={0}&password={1}", "MYUSERNAME", "MYPASS");
string cookieHeader;
HttpWebRequest myWebRequest;
WebResponse myWebResponse; 
String URL = textBox1.Text;
myWebRequest = (HttpWebRequest)WebRequest.Create("formUrl");
myWebRequest.ContentType = "application/x-www-form-urlencoded";
myWebRequest.Method = "POST";
string login = string.Format("go=&Fuser={0}&Fpass={1}", user, pass);
byte[] postbuf = Encoding.ASCII.GetBytes(login);

 myWebResponse = myWebRequest.GetResponse(); //Returns a response from an Internet resource
cookieHeader = myWebResponse.Headers["Set-cookie"];
cookie = myWebRequest.CookieContainer = new CookieContainer();
myWebRequest.CookieContainer = cookie;
Stream streamResponse = myWebResponse.GetResponseStream(); 
                                                        
StreamReader sreader = new StreamReader(streamResponse);
Rstring = sreader.ReadToEnd();

我有点困惑,有人可以帮助我??

这是指向其API文档的链接。要登录您,您需要这样调用他们的API:

https://www.geni.com/platform/oauth/request_token?client_id=YOUR_APP_ID&client_secret=YOUR_APP_SECRET&grant_type=client_credentials 

相关内容

  • 没有找到相关文章

最新更新