Reputation: 543
I am used to get check-ins with
https://api.foursquare.com/v2/venues/4b64c88af964a520d4cf2ae3/herenow?oauth_token=XXXXXXX&v=20120725
but yesterday, I realize that my app is not working properly. I can not get the items[](people who cheked in specific venue). Web service retrieving json like this;
{
meta: {
code: 200
}
notifications: [
{
type: "notificationTray"
item: {
unreadCount: 0
}
}
]
response: {
hereNow: {
count: 16
items: [ ]
}
}
}
Upvotes: 3
Views: 361
Reputation: 1944
seriakillaz is right -- the behavior you're seeing is intentional, and is described by the email he links to.
In general though, the hereNow is working as before if you're checking into a place (the official foursquare apps use the same endpoints we document publicly).
If you're having trouble with it after accounting for the new policy, checkout my response to seriakillaz question: hereNow not working as expected
Upvotes: 2
Reputation: 843
They've just changed the hereNow endpoint: https://groups.google.com/forum/?fromgroups#!topic/foursquare-api/rmS0DbKKOHo
However it is not working for me even if I check-in to a place...
Upvotes: 1