Facebook software development kit
Questions tagged [fbsdk]
410 questions
0
votes
1 answer
Publish to facebook wall using FBSDKShareDialog does not need Submit for Review?
I have an app which will publish a post to fb wall using the FBSDKShareDialog. My code is such as below:
FBSDKLoginManager *loginManager = [[FBSDKLoginManager alloc] init];
[loginManager logInWithPublishPermissions:@[@"publish_actions"]…

mojo
- 5
- 4
0
votes
2 answers
FacebookSDK(4.7) Custom Login UI Button - Swift 2.0
I am new to swift, How to resolve this error of optional "fatal error: unexpectedly found nil while unwrapping an Optional value". This error occurs when i cancelled the Facebook login process.

Sourabh Sharma
- 8,222
- 5
- 68
- 78
0
votes
1 answer
On Swift, how to retrive name and other data when login with Facebook and Parse with FBSDK
Can't get the user's name or email when login with Facebook via Parse. I should have set everything else properly in the AppDelegate.
When I login with my email, my User class works, and can use data I registered with. When I try to login via…

biggreentree
- 1,633
- 3
- 20
- 35
0
votes
0 answers
Login with Facebook is not opening Facebook app for Authentication
In my app there is login with facebook available and working fine. The problem is that it is opening the browser instead of facebook app for Authentication.
FBSDKLoginManager *login = [[FBSDKLoginManager alloc] init];
[login…

Chaudhry Talha
- 7,231
- 11
- 67
- 116
0
votes
0 answers
FBSharebutton always opens sharedialog in webview
i am implementing FBShareButton in my project,but share dialog always opens WebView/Safari View instead of facebook native app.I am using facebook SDK 4.6 & xcode 7..when i use share dialog separately it opens in app, but when i use FBShareButton to…

ravinder singh
- 33
- 5
0
votes
0 answers
FBSDK Share button not working for sharing on friends timeline in xcode7
I am using FBSDK sharebutton in my application using latest fbSDK for iOS & xcode 7,i want to share some information on friend's timeline from my app but when using FBSDK SHARE button only normal share dialog is opening with no option for sharing on…

jayant rawat
- 318
- 2
- 12
0
votes
1 answer
FBSDKCoreKit Framework, in xCode 7 Protocol FBSDKApplicationDelegate doesn't recognized
I downloaded the latest Facebook SDK version 4.6
I followed the Getting Started with IOS SDK reading here: https://developers.facebook.com/docs/ios/getting-started/
I dragged and dropped the FBSDKCoreKit.Framework inside the project like the guide…

Giuseppe Code
- 3
- 2
0
votes
4 answers
Unable to get friendList
var request = FBSDKGraphRequest(graphPath:"/me/friends", parameters: nil);
request.startWithCompletionHandler { (connection : FBSDKGraphRequestConnection!, result : AnyObject!, error : NSError!) -> Void in
if error == nil {
…

Smit
- 1,696
- 1
- 14
- 17
0
votes
1 answer
FBSDK share kit iOS9 issue between device and simulator
I've upgraded FBSDK in my app to the recent version to support iOS9 and included all the LSApplicationQueriesSchemes schemes and NSAppTransportSecurity. Everything works fine including login and sharing.
But when I try to perform a share, the device…

shyamsundar1988
- 529
- 4
- 14
0
votes
0 answers
FBSDKMessageDialog does not send video in message in iOS
I am using the following code to share a video on Facebook:
NSURL *videoURL = [NSURL URLWithString:[self.myApp getVideoAssetURL]];
// it returns AssetURL of video
FBSDKShareVideo *video = [[FBSDKShareVideo alloc] init];
video.videoURL =…

Muhammad Arqam Owais
- 161
- 1
- 9
0
votes
3 answers
Facebook login on iOS FBSDK
I setup everything same as FB developer page (appId, appName, bundleId...). I work on FBSDK 4.6 and iOS 9. I also already added this key on info.plist.
LSApplicationQueriesSchemes
fbapi
…

Dummy307
- 177
- 1
- 7
0
votes
1 answer
I take error like this, i think about tableView but i see in stack trace about FBSDK
I can't find the error's reason... Help please...
0 CoreFoundation CFStringCreateCopy (in CoreFoundation) + 36
1 libswiftCore.dylib 0x100a149d8 0x10094c000 + 821720
2 libswiftCore.dylib 0x1009f85b0 0x10094c000 + 705968
3 XXX_APP_NAME …

Potti
- 53
- 1
- 8
-1
votes
2 answers
Value of type 'AppDelegate' has no member 'Window' swift
I get an error message when trying to access the window from the app delegate::
Value of type 'AppDelegate' has no member 'Window'

Ned Manderson
- 21
- 1
- 5
-1
votes
1 answer
Linking error in react native IOS app after using Facebook SDK
I am using RNFirebase.io and trying its starter kit. It does work fine but I started getting these below errors after setting up Facebook SDK.
ld: warning: Auto-Linking supplied…

rimmy
- 245
- 2
- 11
-1
votes
3 answers
FB SDK produces a PHP Fatal error
First noticed [27-Mar-2017 17:47:16 GMT+0] a FB SDK integration that worked very well allowing people to login to our site via their Facebook account just stopped working. The server logs show the following error
PHP Fatal error: Cannot use object…

Collector
- 2,034
- 4
- 22
- 39