Is it possible to support both Facebook Login and Google Plus login in the same iOS app?
facebook, google-plus, integration, ios, iphone
Solution
Since u are added the Google plus, every thing is same for adding the FB login
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
{
return ([FBSession.activeSession handleOpenURL:url] || [GPPURLHandler handleURL:url sourceApplication:sourceApplication annotation:annotation]);
}
hope this Helps :)
Problem
I integrated Google plus login in my iOS App. But I dont know how to add FB integration in the same app. Is it possible to use both logins in the same app?