使用 API 获取 Gowalla 签到历史记录
我一直在研究 Gowalla API,想知道是否有人找到了一种方法来获取所有最近签到的列表(只是你自己的,不包括朋友)。文档非常糟糕。
I have been playing around with the Gowalla API, and was wondering if anyone has found a way to get a list of all recent checkins (just your own, not including friends). The documentation is quite awful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用他们的 API Explorer 查看 API 方面的可用内容。它非常简洁,并且可以作为很好的文档,只需查看 REST 样式 URL 即可。
以下是获取最近 5 次签到的基本代码。您将需要一个 API 密钥。
这是签入
'stamp'
对象的样子:You can use their API Explorer to see what's available in terms of the API. It's pretty neat and serves as nice documentation, just look at the REST style URLs.
Here's basic code to get the last 5 checkins. You will need an API Key.
Here's what a checkin
'stamp'
object looks like:使用 http://api.gowalla.com/users/USERNAME/events 获取所有用户签到。使用
page
参数获取第一页以外的结果。不要忘记传递带有application/json
值的Accept
标头,否则 Gowalla 将简单地返回 500 错误。Use http://api.gowalla.com/users/USERNAME/events to get all checkins for a user. Use the
page
parameter to get results beyond the first page. Don't forget to pass theAccept
header with theapplication/json
value, or Gowalla will simply return 500 error.