2012-11-09 59 views

回答

0

可以使用簽入ID與註釋檢索的簽入的全部細節: https://api.foursquare.com/v2/checkins/CHECKIN_ID?oauth_token=OAUTH_TOKEN&v=20121109

API-端點: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" 
    } 
    ] 
} 
+0

Thanks.Its適合我 – Sajol