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…
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…
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!
How to add news via FBConnect?
I have the following code:
NSString *newsBody = @"[{\"message\": \"News message\" }]";
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObject:newsBody forKey:@"news"];
[[FBRequest…
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…
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…
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…
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:]:…
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…
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"]
…
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…
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…
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…
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…