在 Pastie 或 C# 中的 Pastebin 上提交帖子
我正在寻找一种从我的 C# 应用程序中向 Pastie.org 或 Pastebin.com 提交帖子的方法,我知道我必须使用某种 http 帖子,但我正在寻找具体的示例。
I'm looking for a way to submit a post to pastie.org, or pastebin.com from within my C# app, i know ill have to use some sort of http post but im looking for specific examples..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我刚刚用 C# 编写了一个简单的 PasteBin 客户端。
您可以按如下方式使用它:
您可以在 上获取您的 API 密钥此页面(您需要登录)。
I just wrote a simple PasteBin client in C#.
You can use it as follows:
You can obtain your API key on this page (you need to be logged in).
使用浏览器发布示例代码/文本并拦截数据并找出答案时,可能值得您花时间检查和监视 HTTP GET/POST。使用 Wireshark 或 HTTPWatch。这应该能让您了解 HTTP 的 POST 中的预期内容。您需要将 HTTP 标头中的内容长度设置为所提交代码的实际长度,看看 这里和此处和此处< /a>.
祝您2010年快乐、平安。
希望这有帮助,
It might be worth your while to check and monitor the HTTP GET/POST's when using your browser to post sample code/text and intercept the data and find out..Use Wireshark or HTTPWatch. This should give you an idea on what is expected in the HTTP's POST. You would need to set the content-length in the HTTP header to the actual length of the code being submitted, have a look here and here and here.
Wishing you a happy and peaceful 2010.
Hope this helps,