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
3 answers

Facebook API / iOS SDK / retrieve page posts without login

Is it possible to retrieve Facebook page posts in an iOS application without having to use Facebook Login? I am currently using the Tumblr API which works perfectly fine and delivers pictures and texts from everything that has been posted. Any help…
patrick
  • 881
  • 2
  • 9
  • 32
0
votes
1 answer

Facebook iOS SDK Hang at App Start

I have not started any of facebook view or method in appDidFinishLoadingWithOptions: but stil when I start app at first, then stop and restart it, it hangs. If i press the pause button i can see the stack trace shown in image. This code in method…
NaXir
  • 2,373
  • 2
  • 24
  • 31
0
votes
1 answer

Call Completion Handler Method In for Loop

I Have albumIds of FB users in one array, I want to get images for each Album for that I have to call following method with albumId, But I cant call this method in For Loop, I want all albums Images, Problem is that For loop executes without calling…
0
votes
1 answer

ios {app name}would like access your facebook account ask every time

I am developing an app that uses facebook authorization. Authorize app like this FBSession *session = [[FBSession alloc] init]; // Set the active session [FBSession setActiveSession:session]; // Open the session [session…
Johnykutty
  • 12,091
  • 13
  • 59
  • 100
0
votes
1 answer

iOS facebook login via custom view (not via external browser)

I have special requirement of client that he want to be able to login to Facebook from within the app itself, i mean he don't want app to open an external browser where user enters his details, he just want to go with native iOS view having…
M P
  • 352
  • 3
  • 14
0
votes
2 answers

Facebook sdk on iOS shows profile pic in simulator but not device

I have the Facebook sdk getting profile pics in my iPhone simulator. But for some reason it doesn't get the image on the device. I'm using the FBProfilePictureView. /** The user's profile picture. */ @property (nonatomic, strong) IBOutlet …
codeetcetera
  • 3,213
  • 4
  • 37
  • 62
0
votes
1 answer

Error Domain=com.facebook.sdk Code=5 when i try to read pictures from facebook

I'm trying to reading the pictures from my Facebook albums. This is the code that I use for reading the albums: - (void)storePhotoIntoCoreDataFromAlbumId:(NSString *)albumId whitAlbumName:(NSString *)albumName { if…
Max_Power89
  • 1,710
  • 1
  • 21
  • 38
0
votes
1 answer

Howto add Modifiers to Graph API V2.0

I'm trying to use Facebook GraphAPI 2.0 to fetch user's id, first_name, and the url of profile picture(with special size modifiers) with single request. Here are my attempts: If simply ask for picture, we can use:…
dprat0821
  • 11
  • 2
0
votes
0 answers

iOS Facebook SDK - requesting permission - opens with web fallback

Probably I am overlooking something, but I cannot find where I can set the mode in which the extra permissions are requested from the user with the iOS Facebook SDK. I am requesting additional publishing permissions with the code from below (and…
Lehel Medves
  • 527
  • 1
  • 5
  • 15
0
votes
1 answer

iOS app and Facebook "user_photos" permissions

I have an application that has to get access to the user's facebook photos and in order to access them I use the following login code to acquire the necessary permission. NSArray *permissionsArray = @[@"user_photos"]; // Login PFUser using…
axel
  • 444
  • 5
  • 18
0
votes
1 answer

Facebook Login button in HelloFacebookSample in ios not showing

I am new in IOS app dev. I tried migrating HelloFacebookSample code into my project. I have carefully copied, checked and compared both codes. But the blue facebook login button is not showing once I run my project. I have added the…
0
votes
1 answer

Can I publish a post with "say what you are doing", using Facebook iOS SDK?

Using Facebook iOS SDK, is it possible to publish a post to my timeline and set the "say what you are doing" field ? Thank you.
thedp
  • 8,350
  • 16
  • 53
  • 95
0
votes
1 answer

Facebook iOS SDK I changed permissions but login dialog still states old permission

I had this code for my FBLoginView to access permissions: [[FBLoginView alloc] initWithReadPermissions:[NSArray arrayWithObject:@"public_profile, email, user_friends"]]; Originally we wanted a list of the users friends, but now we don't so... I…
0
votes
1 answer

IOS posting a photo on facebook with suggested text

Can I share a photo on facebook from an IPhone app and include a "suggested text" (default description). presentShareDialogWithPhotoParams only has photos to include presentShareDialogWithLink needs to be an actual link... (I have a URL of the…
Boaz
  • 4,864
  • 12
  • 50
  • 90
0
votes
1 answer

iOS Facebook integration with signin does not work when Setting is signed in

Ok, this is probably something very common, but I cannot find the solution anywhere. When using the Facebook SDK to handle logging in as a SSO, it works great in the iOS simulator. However, on the actual device, it fails in one very specific…
nghtstr
  • 31
  • 2