Reputation: 2187
I'm developing a windows phone application based on foursquare API, here is a scenarios like this: A user is walking on the road with a phone. He uses my application to find out who just check-in (including strange's check-in) in foursquare around his location, is it possible to implement this request? Thanks!
Upvotes: 0
Views: 84
Reputation: 65564
A quick check of the foursquare API indicates that there appears to be a way to get just what you're after. Simply get a list of nearby venues and then find out who is at each:
https://developer.foursquare.com/docs/venues/search
https://developer.foursquare.com/docs/venues/herenow
Upvotes: 1