微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

如何解决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 举报,一经查实,本站将立刻删除。