crino / instagram-ios-sdk

Instagram SDK for iOS

Home Page:http://www.followgram.me

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Instagram iOS SDK

This open source iOS library allows you to integrate Instagram into your iOS application include iPhone, iPad and iPod touch.

It's inspired by Facebook iOS SDK

Getting Started

  • Register your application on Instagram website.

  • Set REDIRECT URI to ig[clientId]://authorize .

  • Make sure you've edited your application's .plist file properly, so that your applicaition binds to the ig[clientId]:// URL scheme (where "[clientId]" is your Instagram application CLIENT ID).

  • Capture instagram schema in your application

-(BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {
    return [self.instagram handleOpenURL:url]; 
}
-(BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
    return [self.instagram handleOpenURL:url];    
}

Requirements

The library 1.1.0 and higher requires either iOS 5.0 and above.

For compatibility with iOS 4.3, use the latest 1.0.0 release.

Creators

instagram-sdk-ios was created by Cristiano Severini .

Credits

List of contributors.

License

Copyright (C) 2012 Cristiano Severini

Distributed under the MIT License.

About

Instagram SDK for iOS

http://www.followgram.me


Languages

Language:Objective-C 82.4%Language:Ruby 17.6%