Questions tagged [foursquare]

Location based social networking website. Users with GPS mobile devices can check-in at venues and award badges.

Foursquare is a location based social networking website. Users with GPS-enabled mobile devices can run the Foursquare app (available for a variety of devices such as iPhone, Android, Blackberry, etc) to "check-in" at venues to award points and badges.

The Foursquare API gives developers access to all of the data used by the Foursquare mobile applications, and, in some cases, even more. Over 30 million people worldwide use Foursquare, accounting for more than 3 billion check-ins, with millions more each day. And more than a million businesses use the Merchant Platform.

Resources

API Documentation: https://developer.foursquare.com

1554 questions
131
votes
7 answers

How do popular apps authenticate user requests from their mobile app to their server?

Say I have an Android application that connects to a .Net API for receiving/setting data. The confusion that I have is regarding how to sign-up/login the user first time and authenticate it every time they make a request to the API. If I just use…
Maven
  • 12,338
  • 35
  • 95
  • 148
23
votes
4 answers

Foursquare API for venue user image error

The Foursquare API has divided its photo tag for user as prefix and suffix. But if I merge them to form a full image URL and paste this in my browser, gives me errors that says the image can't be displayed because it contains errors. Is it because…
Tuhin Subhra Dey
  • 978
  • 6
  • 18
22
votes
4 answers

How do I parse URL params after a hash with Angularjs?

I'm trying to parse for the access_token from Foursquare where the URL is like this: https://mywebsite.com/4sqredirect/#access_token=1234567890XXXXX I've tried $routeParams and $location and get nothing returned. Only after I tried $route, I did…
padawanlvn
  • 399
  • 1
  • 4
  • 12
17
votes
3 answers

New foursquare venue detail map

I really love the way foursquare designed venue detail view. Especially the map with venue location in the "header" of view ... How was it done? Details are obviously some uiscrollview (maybe uitableview?) and behind it (in the header) there is a…
animal_chin
  • 6,450
  • 9
  • 35
  • 40
13
votes
1 answer

What's the best way to tune my Foursquare API search queries?

I'm getting some erratic results from Foursquare's venue search API and I'm wondering if anyone has any tips on how to process my input parameters for the most "intuitive" results. For example, suppose I am searching for a venue called "Ise Sushi",…
Jeff Lee
  • 1,224
  • 2
  • 13
  • 20
12
votes
3 answers

Small Popup for Instructions, like foursquare ones

After seeing the last screenshots of new foursquare application and their balloon like cartoon instructions, I'd like to create some of these in my application. I found a similar question for iPhone Small popup for instructions... How? Here is…
Francisco Junior
  • 1,873
  • 17
  • 23
12
votes
5 answers

Retrofit: How to specify comma-separated parameters in request?

I'm trying to refactor my code to use Retrofit (from Volley) for some Foursquare API calls but haven't found a proper example that shows how to specify a query parameter that has 2 values separated by a comma. My base url is the following: public…
cavega
  • 446
  • 3
  • 11
  • 23
11
votes
4 answers

Using Httplib2 on Python Appengine

Why am I getting this error when running my application which is trying to OAuth with Foursquare? import httplib2 ImportError: No module named httplib2 I have installed httplib2 by downloading it and $ python setup.py install on the command line…
keith
  • 195
  • 1
  • 7
10
votes
3 answers

What am I missing? RestSharp won't deserialize Json

I am trying to turn a json response back from foursquare into objects. I get something like this back { "meta":{ "code":200 }, "response":{ "venues":[ { "id":"4abfb58ef964a520be9120e3", …
chobo2
  • 75,304
  • 170
  • 472
  • 780
10
votes
3 answers

Httplib2 ssl error

Today I faced one interesting issue. I'm using the foursquare recommended python library httplib2 raise SSLHandshakeError(SSLError(1, '_ssl.c:504: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed'),) while trying…
user1876339
  • 319
  • 1
  • 2
  • 7
9
votes
1 answer

OAuth not working inside an iframe

I have built a Fiddle on JSFiddle which retrieves an OAuth access token via Foursquare's "token" response type. One or two days ago this was working fine. When "Login with Foursquare" was clicked Foursquare's authorization page appeared and I was…
Jesse Hattabaugh
  • 7,359
  • 8
  • 30
  • 35
9
votes
3 answers

How can I watch a Foursquare venue for check-ins?

The FourSquare API seems to be very user-centric: After logging in via OAuth I can see my friends check in, and which of my friends are currently checked into a given venue. I'm looking for something more venue-centric, where I can get a list of…
meager
  • 209,754
  • 38
  • 307
  • 315
9
votes
2 answers

python foursquare - SSL3 certificate verify failed

I'm trying to make a userless request to the Foursquare API using Mike Lewis' Python wrapper - https://github.com/mLewisLogic/foursquare: client = foursquare.Foursquare(client_id=Client_ID, client_secret=Client_Secret) categs =…
user1814277
  • 185
  • 1
  • 9
9
votes
2 answers

Foursquare: Photos on venues/photos but not on venues/explore?

If you use Foursquare's API venues/explore to get venues in a certain area, you get in the response the number of photos. For example, the default query generated when you press the "Try It" button in the API…
user1463862
  • 101
  • 1
  • 4
8
votes
3 answers

Construct Profile Picture URL

Most social apis have a way to construct a url to the user's profile picture using their user_id or username. Any chance foursquare has something similar or plans…
gerbz
  • 950
  • 1
  • 10
  • 26
1
2 3
99 100