instagram-ios-sdk 0.0.1

instagram-ios-sdk 0.0.1

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Dec 2014

Maintained by Unclaimed.



  • By
  • Cristiano Severini

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];    
}

License

Copyright (C) 2012 Cristiano Severini

Distributed under the MIT License.