Reputation: 17
There are many 4sq checkin tweets posted on Twitter. These tweets all contain a link to foursquare.com.
The link, for example, https://foursquare.com/donnyndra/checkin/4f60500ae4b02a8707007b93?s=ogf_jvcuoha1T0QUfIRVWGupvuc&ref=tw, has a checkin id and a signature.
The question is how can I obtain the lat and lon of the checkin by using the checkin id and signature?
I use Java language.
Thanks.
Upvotes: 0
Views: 310
Reputation: 20920
Make an API request to get checkin details: https://developer.foursquare.com/docs/checkins/checkins
In the response is a "location" section that includes latitude/longitude.
Upvotes: 2