在 C# 中实现 Twitter 的短 URL (tinyurls)?

发布于 2024-10-20 08:41:37 字数 1539 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

傲鸠 2024-10-27 08:41:37

您只需向 http://tinyurl.com/api-create.php?url={url} 发出请求,并将 {url} 替换为您的 url想要并阅读页面的内容。

这是一个例子:

public string ShortUrl(string url)
    {
        WebRequest request = WebRequest.Create(string.Format("http://tinyurl.com/api-create.php?url={0}", url));
        Stream stream = request.GetResponse().GetResponseStream();
        StreamReader reader = new StreamReader(stream);
        return reader.ReadLine();
    }

You just need to make a request to http://tinyurl.com/api-create.php?url={url} substituting the {url} with the url you want and read the content of the page.

Here's an example:

public string ShortUrl(string url)
    {
        WebRequest request = WebRequest.Create(string.Format("http://tinyurl.com/api-create.php?url={0}", url));
        Stream stream = request.GetResponse().GetResponseStream();
        StreamReader reader = new StreamReader(stream);
        return reader.ReadLine();
    }
红墙和绿瓦 2024-10-27 08:41:37

我刚刚发表了一篇文章关于在 C# 应用程序中从 bit.ly 执行此操作。

请注意,bit.ly 需要一个免费的登录密钥,您需要该密钥才能使代码正常工作。

I just published an article about doing this from bit.ly in a C# application.

Note that bit.ly requires a free login key that you will need in order for the code to work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文