facebook-ios-sdk

IPhone + Twitter + LinkedIn + Facebook Error : Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 failed with exit code 1

删除回忆录丶 提交于 2019-11-27 08:27:47
问题 I am using MGTwitterEngine oAuth and LinkedIn iOS SDK in my iOS application with facebook-ios-sdk TwitterEngine : https://github.com/bengottlieb/Twitter-OAuth-iPhone LinkedInIphone : https://github.com/ResultsDirect/LinkedIn-iPhone Both integrated well separately, But when I have used both in application then error coming FB + Twitter = working well FB + LinkedIn = Working Well FB + Twitter + LinkedIn = Not Working and giving error: Command /Developer/Platforms/iPhoneSimulator.platform

iOS Facebook SDK 4 Session

坚强是说给别人听的谎言 提交于 2019-11-27 07:27:15
问题 I'm having a problem with the new FacebookSDK for iOS. I can successfully login and get back necessary information, but when I open my app again and I intend to skip the login process, the session that I'm verifying is null. This is my AppDelegate: class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { self.window = UIWindow(frame: UIScreen

FBSDKLoginManager with FBSDKLoginBehaviorWeb failing with “Not Logged In” error

馋奶兔 提交于 2019-11-27 06:36:39
问题 Something must have changed recently on Facebook's servers regarding how they process login requests because this used to be working perfectly and suddenly stopped. (We are using FBSDKLoginManager.loginBehavior = FBSDKLoginBehaviorWeb because of how our app is replicated for multiple brands (one codebase, many apps) and issues we ran into using the native login.) Anyhow, this is what we see now when we try to present a login webview to the user ( before it even lets them attempt to login):

Parse Facebook login fails with error code 251

大兔子大兔子 提交于 2019-11-27 06:26:43
问题 I'm trying to use Parse Facebook & Twitter login in my app but the problem is I can't get the Facebook login to work. I'm getting the following error message: Error Domain=Parse Code=251 "The operation couldn’t be completed. (Parse error 251.)" UserInfo=0xa0329c0 {code=251, error=The supplied Facebook session token is expired or invalid. I also downloaded the Parse tutorial "IntegratingFacebookTutorial" and still the same error. (I added the bundle to the facebook app and updated the

Facebook iOS8 SDK build module error for FBSDKCoreKit

淺唱寂寞╮ 提交于 2019-11-27 06:23:12
I am trying to add the Facebook SDK to my iOS 8 Objective-C app in Xcode. I did the install according to the FB-dev instructions. However, I get a "Could not build module 'FBSDKCoreKit'" error when I add the header to my AppDelegate.m file. #import "AppDelegate.h" #import <FBSDKCoreKit/FBSDKCoreKit.h> Based on what I read elsewhere I have already cleaned the build and re-installed Xcode. I also re-installed the Facebook SDK installer and tried to add it to a blank project (in case there was something corrupt with my app). I have double checked the plist and the framework files FB lists in the

Apple rejected app 10.6 because Facebook opens Safari to login

混江龙づ霸主 提交于 2019-11-27 06:18:09
问题 I sent another version of my app, that allow users to login via Facebook. Of course, I use official Facebook iOS SDK. But Apple twice rejected my app with following reason: The app opens a web page in mobile Safari for logging in, then returns the user to the app. The user should be able log in without opening Safari first. I tried to get more info, and reviewer's answer was: Thank you for your response. We reviewed your app version 3.2.1 and when the user taps Facebook to login, the user is

How to move to the next page in Facebook JSON response using iOS SDK?

我的未来我决定 提交于 2019-11-27 05:41:17
问题 In Facebook iOS SDK, I can ask for queries like this: [_facebook requestWithGraphPath:@"me/feed" andDelegate:self]; But often Facebook will give a limited JSON response with a URL to be used to request to move to earlier dates, for example. So in the JSON response, I'll have: data = ( /*things here... status updates, photos, etc...*/ ); paging = { next = "https://graph.facebook.com/me/feed?sdk=ios&sdk_version=2&access_token= <something>&until=2010-12-04"; previous = "https://graph.facebook

Posting Photo to facebook fan page via iOS app by regular non-admin users

旧街凉风 提交于 2019-11-27 05:04:18
I am trying to post a photo to my apps facebook fan page and to the users wall also. I have been successful to post the photo on the users wall, but failed to post it in the fan pages wall. ( The user is not necessarily an admin or page owner, just the regular users. As the fan page has the option of anyone can post to it, it is not mandatory for the user to even like the page first. Right? ) After googling a while, I found this answer . According to it, I need an access_token of the fan page and an album_id to do so. But I can't find any clue about how to get them. So far I have tried this

Getting random “facebookErrDomain error 10000”

帅比萌擦擦* 提交于 2019-11-27 04:33:53
问题 I am using the latest facebook IOS SDK, and I am getting random "facebookErrDomain error 10000" , when using the requestWithGraphPath . I can trigger the request from the UI and sometimes it runs fine, sometimes it gives me the error. Has anyone ran into a similar issue? 回答1: The error object returned has the details about what's happening. I suggest to implement that method to get more infos: - (void)request:(FBRequest *)request didFailWithError:(NSError *)error { NSLog(@"%@", [error

Facebook App invites notification not working in ios

我与影子孤独终老i 提交于 2019-11-27 04:28:44
问题 I had implemented Facebook App invites in Demo Application. It worked fine but did not get notification. I have added all detail in my question, now can anyone tell me what is the issue in my code and what should I do to resolve this. I have created test users for testing this app. This code works fine, it launches a dialogue box, showing the friend list and also shows that the app invite is sent but when I check it in friends account it doesn't show any notification. My Info.plist File I