展开 Tumblr 缩短的链接
我有一个像这样的 Tumblr 链接:http://tumblr.com/XXXXXXXX
为了与他们的 API 进行通信< a href="http://www.tumblr.com/docs/en/api/v2#overview" rel="nofollow">我需要博客的主机名,因此我需要将链接扩展为完整的链接。类似于: http://blogname.tumblr.com/post/XXXXXX
我如何扩展tumblr 链接缩短了?
I have a Tumblr link like this: http://tumblr.com/XXXXXXXX
In order to communicate with their API I need the hostname of the blog, therefore I need to expand the link to the complete link. Something like: http://blogname.tumblr.com/post/XXXXXX
How can I expand a tumblr shortened link?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是在 Ruby 中执行此操作的另一种方法。它需要遵循 tumblr 重定向。从 http://tmblr.co/XXXXX 到 http://www.tumblr.com/XXXXX 最后是展开的 URL。来自 Net::HTTP 文档:
希望对某人有帮助
Here's another way to do it in Ruby. It needs to follow tumblr redirection. From http://tmblr.co/XXXXX to http://www.tumblr.com/XXXXX and lastly to the expanded URL. From Net::HTTP documentation:
Hope it helps someone
在 Tumblr API 中,我不认为这是可能的,正如 Derek Gottfrid。如果您在应用程序或服务中使用它,您可以尝试查看标题。
例如,在 python 中,您可以使用 urllib2
在 PHP 中,您可以使用 get_headers 方法
Within the Tumblr API, I do not believe it is possible as mentioned by Derek Gottfrid. If you are using it within your app or service you can try looking at the headers.
For example in python, you can use urllib2
In PHP, you can use the get_headers method