I getting trying to get familiar with FB's newest IOS SDK (4.0.1). I've integrated it into an IOS8 Swift project and using the FBSDKLoginButton to log users in and out. I want the application to skip showing the Login view controller if the user has…
After installing the new sdk I cleaned the project and build it. It fails with this message:
Undefined symbols for architecture i386:
"_SecRandomCopyBytes", referenced from:
+[FBCrypto randomBytes:] in FacebookSDK(FBCrypto.o)
…
When I use the webdialog for a friendrequest, everything is going fine, except no request or anything is made.
The code:
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
…
I am trying to add facebook app events, and I installed FacebookSDK. Then I have next code:
import FacebookCore
static func logViewContentEvent(contentType : String, contentData : String, contentId : String, currency : String, price : Double) {
…
I have upgraded to Xcode 11.1 on Mojave and now the Rewarded Ad example project from FacebookSDK complains that com.apple.commcenter.coretelephony.xpc is not working correctly.
PodFile
# Uncomment the next line to define a global platform for your…
I'm working through the Facebook API for my iPhone app, and have two questions:
All documentation/examples seem to put everything in the appDelegate: instantiating the Facebook object and authorizing in appDidFinishLaunching, and overriding the…
I occasionally need to cancel a FaceBook graph request, but there seems to be no cancel or similar method in their API to do so. At the moment, crashes sometimes occur as the delegate I assigned to the request has been deallocated. Is there any way…
I am developing a iPhone application which get facebook album with this URL https://graph.facebook.com/me/albums?access_token=2227470867|2.ZJr73vaEvFeN4fI_A70RFw__.3600.1297090800-100000566543036|WmgxdwULBgKXl8J7ksGIA1tyGik
Now i want to get photos…
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…
I am displaying news feed using graph api. I have queries about below problems.
I would like to give "Like" functionality for each news feed post.
I would like to give "Comment" functionality for each news feed post.
Can someone assist me how to…
How do you set the Facebook Pixel using an app that is made on Cordova. I need to track conversions in the app so I can better target the ads made in Facebook Ads. Normally it will be easy to do this task in an HTML page by copy pasting it and…
I am using Facebook SDK v4.8.0 for iOS in my application for login with Facebook. (iPhone OS version 9.3)
Following is some related code for integration:
AppDelegate.swift
func application(application: UIApplication, didFinishLaunchingWithOptions…
I use FBSDK with Xcode 7.2.1 to retrieve user profile information and use SwiftyJson to handle and manipulate json data. After changing values / removing some i want to make a post request to my api with the JSON data. But i am stucked with the…
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
…
According to Facebook v4 changelog, all FB*ViewController were deprecated and we should build our own table view controller to show friends list.
Now, before I put myself working on it, does anyone knows an alternative for…