如何使用 Services_Digg2 获取 URL 的 Digg 计数?
目前还不清楚这个 API 是否能够通过 URL 进行搜索,通过 G 进行搜索,但没有取得太大成功。
It isn't clear if this API is even capable of searching by URL, searched through G, without much success.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Services_Digg2 只是 PHP 中的一个客户端库,它将所有调用转发到 API,并且 API 确实支持按 url 搜索。您需要传递的是 url 的 md5 哈希值,而不是实际的 url。 PHP 有一个 md5 函数,您可以使用它来获取url 的 md5 哈希值。
然后,API 调用将针对
story.getAll
,并且您将之前计算的 md5 哈希值作为参数link_hash
传递。上面的哈希值适用于 URL http://www.nytimes.com /2010/01/05/health/05docs.html 并且来自 API 的响应是:
此响应中的 Story 元素有一个名为
diggs
的属性,这正是您所需要的。要通过 PHP 库实现此目的,代码应如下所示:
Services_Digg2 is just a client library in PHP that forwards all calls to the API and the API does support searching by urls. What you need to pass is the md5 hash of the url instead of the actual url. PHP has a md5 function that you can use to get the md5 hash of a url.
The API call then would be for
story.getAll
and you pass the previously calculated md5 hash as a parameterlink_hash
.This hash above is for the URL http://www.nytimes.com/2010/01/05/health/05docs.html and the response from the API is:
The story element in this response has an attribute called
diggs
which is what you need.To get this through the PHP library, the code should look something like: