Android:使用foursquare api在checkin上收到评论

时间:2012-11-09 13:04:33

标签: android comments foursquare checkin

我可以使用https://api.foursquare.com/v2/users/USER_ID/checkins/?oauth_token=ACCESS_TOKEN&v=20121109来检索我的签到地点。

这个api返回关于我在json fromat的签到地点的所有内容,除了签到地点下的评论。结果只显示评论总数而不是评论。

但我需要评论。请帮助我..

1 个答案:

答案 0 :(得分:0)

您可以使用签入ID来检索包含注释的签入的完整详细信息: https://api.foursquare.com/v2/checkins/CHECKIN_ID?oauth_token=OAUTH_TOKEN&v=20121109

API-Endpoint:https://api.foursquare.com/v2/checkins/CHECKIN_ID

回复包括评论:

 comments: {
  count: 1
  items: [
  {
   id: "..."
   createdAt: ...
   user: {
    id: "..."
    firstName: "..."
    lastName: "..."
    relationship: "self"
    photo: {
     prefix: "https://irs2.4sqi.net/img/user/"
     suffix: "..."
    }
   }
   text: "Hello that is a comment"
  }
  ]
 }