I am trying to integrate the new Facebook SDK for iOS and had a problem understanding some concepts.
I authenticate using [FBSession sessionOpenWithPermissions:...] auth dialog comes up and I return the app. Auth successful.
Then shut down the app,…
I have two versions of my iPhone app, one is for the appstore and the other an ad-hoc version for internal testing. They have:
- Same FB App ID for both (they both communicate with same backend)
- Two different bundle IDs (so they can both be…
I am coding an iOS 8 app in swift using the FBSDK to allow users to log in to my app. So far I have successfully implemented the login feature using the FBSDK v3.25 in swift using a Bridging-Header.h file and updating the info.plist accordingly to…
I have recently started to implement the new Facebook's App Invites feature. The invite is sent, but my friends (or app testers in my case) whom I sent app invites to did not receive any notification.
==
Update: I have successfully tested out the…
I'm currently trying to use the Facebook SDK official pod in its 3.14.1 version (also tried 3.9, same result) but I stumble upon an issue.
Here is my code:
self->_session = [[FBSession alloc] initWithAppID:[[self class] facebookAppId]
…
I'm using UIActivityViewController, I want to show Facebook option even if the user has not defined a Facebook account in device settings.
In my code, Facebook option not shown when there is no Facebook acoount in settings.
UIActivityViewController…
I have the following code that I use during facebook login.
- (BOOL)openFBSessionWithAllowLoginUI:(BOOL)allowLoginUI
withCompletionHandler:(void (^)())completionHandler
{
NSArray *permissions = [NSArray arrayWithObjects:
…
I'm getting the following error when attempting to use the ios6 native facebook login
The Facebook server could not fulfill this access request: Temporarily unable to make API calls on behalf of XYZ
The login works fine if I remove the ios facebook…
Some context: the user had previously installed the app, authorized FB, everything worked great, then they changed their FB password (through facebook.com), deleted the app, and have now reinstalled it and are running it for the first time again…
I want to put some Facebook integration in my app. At this point I've managed to login, post to friends wall, retrieve the list of friends, etc. Everything is OK except for one thing...
If the user removes the app from your Facebook settings /…
I am using the Facebook iOS SDK for iPhone. I initialize the Facebook instance
facebook = [[Facebook alloc] initWithAppId:kAppId];
And then I do login:
[facebook authorize:permissions delegate:self];
After I logged in to Facebook I am doing the…
A user tried to login to my app using Facebook login and they encountered the following error after being redirected to their native Facebook app: "Application Unavailable: The application you're trying to use is either no longer available or access…
After the last update of xcode 7.3 i am having
ld: warning: Auto-Linking supplied `'/Users/utkudalmaz/Developer/Frameworks/FacebookSDK/Bolts.framework/Bolts', framework linker option at…
When I try to share a link along with a picture, at the same time, via FBSDKSharePhoto, only the photo gets shared. No link appears.
Here is the code I use:
let photo : FBSDKSharePhoto = FBSDKSharePhoto()
photo.image =…