forked from mejibyte/iPhone-Example-Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGowallaAPIKeys.h
19 lines (15 loc) · 984 Bytes
/
GowallaAPIKeys.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#define kGowallaOAuthURL @"https://gowalla.com/api/oauth/new"
// Credentials for authentication using OAuth
// Replace with your own credentials, available at http://api.gowalla.com/api/keys
#define kGowallaAPIKey @"e7ccb7d3d2414eb2af4663fc91eb2793"
#define kGowallaAPISecret @"313a3cbfc6464e3c95c714919c9e3bec"
// In order to intercept and respond to the OAuth callback, we need to register
// a custom URL type for the application. This should be unique, to avoid any
// naming collisions with other applications.
//
// Replace this in Info.plist with the callback for your application,
#define kGowallaRedirectURI @"gowalla-basic://success"
// Keys for storing OAuth tokens using NSUserDefaults
#define kGowallaBasicOAuthAccessTokenPreferenceKey @"gowalla_basic_oauth_access_token"
#define kGowallaBasicOAuthRefreshTokenPreferenceKey @"gowalla_basic_oauth_refresh_token"
#define kGowallaBasicOAuthTokenExpirationPreferenceKey @"gowalla_basic_oauth_token_expiration_date"