Questions tagged [facebook-ios-sdk]

Facebook's SDK for developing Facebook-connected applications for iOS devices

Facebook SDK 4.x for iOS.

1778 questions
0
votes
2 answers

FBProfilePictureView is not showing image

I'm having the same problem I saw some people have with the FBProfilePictureView not showing the photo. I've already seen this question and I've added [FBProfilePictureView class]; to my first line of the app delegate method didFinishLaunching but…
fe-a-v
  • 3
  • 2
0
votes
1 answer

Creating an Array of objects from the Facebook SDK in Swift

Im new to Swift and IOS programming in general so maybe im just google ing the wrong things I have the Facebook SDK working and returning the albums. Now i want the data in objects named Album. These Album objects will be the datasource of my…
Twizzler
  • 491
  • 1
  • 7
  • 25
0
votes
1 answer

Adding Facebook iPhone SDK to Project = 102 error and build failed

As far as I can tell I've followed the instructions perfectly ... and yet I am getting 102 errors and build failed when I attempt to build my iPhone application project in XCode. I'm using XCode 3.2.2. What am I missing? This is driving me mad!
wgpubs
  • 8,131
  • 15
  • 62
  • 109
0
votes
1 answer

iPhone FBConnect, dashboard.addnews

How to add news via FBConnect? I have the following code: NSString *newsBody = @"[{\"message\": \"News message\" }]"; NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObject:newsBody forKey:@"news"]; [[FBRequest…
Dmitry
  • 1,035
  • 2
  • 14
  • 27
0
votes
1 answer

Switching to Safari for Facebook login terminates iOS app

I am designing a Facebook-enabled app and I'm testing Facebook login. I am using Parse (1.4.2, latest) with ParseFacebookUtils (1.4.2, latest). Here is how I login: [PFFacebookUtils logInWithPermissions:@[@"user_friends"] block:...]; However, the…
Can Poyrazoğlu
  • 33,241
  • 48
  • 191
  • 389
0
votes
1 answer

Testing Facebook iOS requests before publishing in App Store?

I'm able to successfully send requests through the Facebook iOS SDK, however the notifications do not appear in the user's iOS app. Based on other answers on here, I've determined this is because I do not have a iPhone Store ID configured in my FB…
MikeBman
  • 21
  • 5
0
votes
3 answers

how can I send requests to facebook test users?

I have created a number of test user accounts. How can I send requests to these test users since they don't appear in the list of friends?
0
votes
1 answer

Facebook iOS SDK : get likes of an object silently

does anyone know how to get the Facebook Open Graph object (FBGraphObject) from an url without forcing user to log to his facebook account, i.e having to open a FBSession. A little explanation: I have this url for…
0
votes
1 answer

Parse and Facebook - PFUser logInWithAuthType unrecognized selector error

I am having an issue using Parse to authenticate with Facebook. My app will run fine until I hit the login to facebook button, and the below error is thrown: 2014-10-21 12:42:20.047 beacon-iphone[35352:15965138] +[PFUser logInWithAuthType:block:]:…
Anconia
  • 3,888
  • 6
  • 36
  • 65
0
votes
1 answer

How to fetch Facebook user's full friend list in Facebook iOS SDK

I had a question concerning the Facebook iOS SDK that has been troubling me ever since i started my iOS project so I thought I could post it here to see if any of you had wisdom to share on this matter. For my Facebook connected app to function…
0
votes
1 answer

Unexpectedly found nil while unwrapping optional.

I've narrowed down the error to this block of code. I need to define something at optional but I'm not sure where. @IBAction func SignupWithFacebook(sender: AnyObject) { var permissionsArray = ["user_about_me", "user_birthday", "email"] …
user3407067
0
votes
2 answers

Get birthdays of Friends who are using my App

I want to extract birthdays of friends who are using my app; I'm unable to access it. FBRequest *friendRequest = [FBRequest requestForGraphPath:@"me/friends?fields=name,birthday"]; [friendRequest startWithCompletionHandler:^(FBRequestConnection…
Vaibhav Jhaveri
  • 1,579
  • 3
  • 28
  • 53
0
votes
1 answer

Facebook FBLoginView Custom loginView button internet issue

Hi every one, I'm developing app,it having login with face book functionality.For this i have used Facebook iOS SDK 3.18.1 version. I have created custom FBLoginView with custom button.every thing work properly. I had one issue if there is no…
ggg_1120
  • 398
  • 2
  • 19
0
votes
1 answer

Different version of Facebook iOS SDK and Audience Network iOS SDK in the same app

Since the introduction of of the Facebook Audience Network SDK for iOS, Facebook started to release updates to the two SDKs together. I was wondering... can we use different versions of the SDKs in the same app or there are dependencies that require…
Andrea
  • 638
  • 9
  • 20
0
votes
0 answers

Custom Facebook iOS request dialog with sdk v3.19 and Graph API v2.1

I'm trying to figure how a custom invite/request dialog can be created in the new Facebook iOS SDK. So far I only found the use of FBWebDialogs to create request dialog but it's not customizable AFAIK. In this sample there is an explanation on how…
ozba
  • 6,522
  • 4
  • 33
  • 40