史努比的 C# 等价物
Snoopy 是一个提供 Web 浏览器功能的 PHP 类。 C# 中是否有类似的功能?我在处理 cookie 等方面遇到很多麻烦。
Snoopy is a PHP class that provides the functionality of a web-browser. Is there anything that does the same in C#? I'm having lots of trouble with handling cookies, etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你需要史努比什么? C# 中有一个 WebBrowser 类
不要具体说明 cookie 给您带来的问题,所以这是我现在能做的最好的部分:
What about Snoopy do you need? There is a WebBrowser Class in C#
You don't specify what about cookies are giving you problems, so this is the best I can do for now for that part:
最简单的事情是 HttpWebRequest - 你创建一个像这样的:
然后你可以设置标头、cookie 等。你可以编写你自己的包装类来给它一个类似于 Snoopy 的接口。
The simplest thing would be HttpWebRequest - you create one like this:
And you can then set headers, cookies etc. You could write your own wrapper class to give it an interface similar to Snoopy.