C#无需使用API​​即可登录Photobucket.com

问题描述

| 我试图不使用那里的API登录到Photobucket.com。这是我正在使用的代码,但它不断使登录页面退回。 感谢您的任何帮助,我已经为此困扰了好几天。
string formUrl = \"https://login.photobucket.com/login\";
string formParams = string.Format(\"ts={0}&sig={1}&usernameemail={2}&password={3}&redir={4}&redirectAction={5}&redirectParams={6}&returnUrl={7}&action={8}\",ts,sig,email,password,\"\",\"login\");

string cookieHeader;
WebRequest req = WebRequest.Create(formUrl);
req.ContentType = \"application/x-www-form-urlencoded\";
req.Method = \"POST\";
byte[] bytes = Encoding.ASCII.GetBytes(formParams);
req.ContentLength = bytes.Length;
Using (Stream os = req.GetRequestStream())
{
  os.Write(bytes,bytes.Length);
}
WebResponse resp = req.GetResponse();
cookieHeader = resp.Headers[\"Set-cookie\"];
    

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)