如何在 api 中查询特定用户的签到?喜欢加入用户并按 user_id 过滤?这是因为 checkin 没有 user_id 属性。
问问题
83 次
2 回答
0
刚刚做了一个解决方法,将 owner_id 作为一个 custom_field 在签入创建中。
于 2016-03-11T20:25:31.123 回答
0
您应该能够在查询签入 API 中使用 user_id,如下例所示:
curl -c cookies.txt -b cookies.txt -X GET --data-urlencode 'where={"user_id":"56207d2616d4b1e2de4bbba8"}' "https://api.cloud.appcelerator.com/v1/checkins/query.json?key=myOwnAppKey&pretty_json=true&show_user_like=true&count=true"
{
"meta": {
"code": 200,
"status": "ok",
"method_name": "queryCheckins",
"count": 1
},
"response": {
"checkins": [
{
"id": "56e67fb3550a680912694e17",
"created_at": "2016-03-14T09:09:07+0000",
"updated_at": "2016-03-14T09:09:07+0000",
"place_id": "56e67edda778ca09086b8ff1",
"user_id": "56207d2616d4b1e2de4bbba8"
}
]
}
}
于 2016-03-14T09:25:46.570 回答