I recently installed Fabric SDK. Did you provide your organization's email ID during the registration? If you did, you shouldn't be facing any issues. One suggestion I can provide is to try inviting a colleague of yours and see if it works.
Adding a login button in your app is very simple. In AppDelegate.m
, import the header files
#import <Fabric/Fabric.h>
#import <TwitterKit/TwitterKit.h>
Then in your didFinishLaunchingWithOptions
method
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[Fabric with:@[TwitterKit]];
return YES;
}
Open your Main.Storyboard file. Add a UIButton. Select it and open the Identity Inspector (alt+cmd+3). In the Class textfield, enter "TWTRLogInButton". Open your <Whatever>ViewController.m
and create a property
@property (nonatomic,strong) IBOutlet TWTRLogInButton *twLoginView;
In the viewDidLoad
method, add the following line.
_twLoginView = [TWTRLogInButton buttonWithLogInCompletion:^(TWTRSession *session, NSError *error) {
// do whatever you wish to do with Twitter session instance.
}];