Foursquare API v2 for iOS
A simple Objective-C wrapper for the foursquare API v2. It allows you to integrate foursquare into your iOS application.
Features
- Simple, small and easy to use
- Authentication using Safari (see Future Plans below)
- Asynchronous requests support
- Open source BSD license
Requirements
- Xcode 5 or later
- Base SDK: iOS 7.0 or later
- Deployment Target: iOS 5.0 or later
This library requires your app to link against the following frameworks:
- Foundation.framework
- MobileCoreServices.framework
- UIKit.framework
Getting Started
-
Register for an API consumer key
In order to obtain an oAuth access token, this library uses Safari and a custom URL scheme that brings the user back to your app. For example, FSQDemo app uses the
fsqdemo
URL scheme.The client ID and callback URL are required when creating the BZFoursquare object.
BZFoursquare *foursquare = [[BZFoursquare alloc] initWithClientID:@"YOUR_CLIENT_ID" callbackURL:@"YOUR_CALLBACK_URL"];
-
Installation
Copy all the files from the BZFoursquare folder to your project.
Automatic Reference Counting (ARC)
If you are including this library in your project that uses Objective-C Automatic Reference Counting (ARC) enabled, you will need to set the
-fno-objc-arc
compiler flag on all of the BZFoursquare source files. To do this in Xcode, go to your active target and select the "Build Phases" tab. In the "Compiler Flags" column, set-fno-objc-arc
for each of the BZFoursquare source files. The following is the setting of the FSQDemo project.MobileCoreServices
You will need to add the MobileCoreServices library to your project. To do this in Xcode, go to your active target and select the "Build Phases" tab. In the "Link Binary with Libraries" section, click the plus button and select MobileCoreServices from the dialog box that is presented.
-
Set up your custom URL scheme
Add your custom URL scheme to your project. The following is the setting of the FSQDemo project.
Sample Applications
This library comes with FSQDemo app that demonstrates authorization, making API calls to guide you in development.
To build and run FSQDemo app, open the FSQDemo project with Xcode 5 or later and set FOURSQURE_CLIENT_ID
to your client ID.
License
Foursquare API v2 for iOS is available under the 2-clause BSD license. See the LICENSE file for more info.
Future Plans
- Foursquare native authentication support