Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
This tag should be used only on questions that are about Objective-C features or depend on code in the language. The tags "cocoa" and "cocoa-touch" should be used to ask about Apple's frameworks or classes. Use the related "ios" and "osx" for issues specific to those platforms.
1
vote
0answers
24 views
Friends listing order by name Facebook sdk for ios
I am using Xcode 5, iOS 7 and latest facebook sdk. I have to get the friends list in alphabetical order. Earlier I have used graph api and fql query for getting the friends list in alphabetical order ...
0
votes
0answers
15 views
Facebook iOS SDK - Posting a custom action and object to a users activity feed
I have the following code which should add an object to the current user's feed
id<FBOpenGraphAction> object = (id<FBOpenGraphAction>)[FBGraphObject graphObject];
[object ...
0
votes
0answers
18 views
iOS SDK OAuthException HTTP Error code 500
since this week my iOS App has a problem accessing FB (via iOS FB SDK). Following error occurs:
2013-06-18 15:44:16.756 foo-coffee[2441:907] Error: HTTP status code: 500
2013-06-18 15:44:16.761 ...
0
votes
1answer
18 views
(BOOL)openSessionWithAllowLoginUI:(BOOL)allowLoginUI is never called
I followed all the instructions :
(BOOL)openSessionWithAllowLoginUI:(BOOL)allowLoginUI is defined in my
appdelegate header and implemenation
NSString *const FBSessionStateChangedNotification is ...
1
vote
0answers
21 views
Quering Facebook notifications using Social framework in iOS 6
I've looked around the Social Framework, but it's difficult to navigate. I figured out how to get the latest @mentions on twitter, which I do like so:
NSURL *mentionsURL = [NSURL ...
3
votes
1answer
40 views
ACAccountType always showing 0 accounts
I have used facebook SDK for authentication with the facebook. When there is no facebook account enabled in settings then by click on the button apps goes to safari for authentication i.e.
if ...
0
votes
0answers
14 views
FBRequestConnection filters ID
Is there a way to filter out certain pages via their ID? I have an array of ID page to be filtered, and I would do so before the request and not later.
[FBRequestConnection startWithGraphPath:
...
0
votes
2answers
43 views
how to set text uneditable when posting on facebook using SLComposeViewController in iphone
I am integrating Facebook in my application using SLComposeViewController for iOS 6 and I am trying to do is text can not be edit before posting it on Facebook.Now,it is editable,I want to make it ...
0
votes
2answers
72 views
+50
Why can't I authenticate to Facebook Chat in my iOS application?
I have been scouring the internet trying to find a solution to this problem. I understand the basic idea on how it is supposed to work, but I can't get the implementation to work and I can't find any ...
0
votes
0answers
15 views
Facebook Scores API not publishing open graph stories
I am a little new to the facebook SDK so please bear with me on this. I have been searching for hours and have not been able to find anything relating to my problem.
I have implemented the facebook ...
0
votes
3answers
47 views
Facebook sdk 3.5 error “com.facebook.sdk:ErrorLoginFailedReason”
I'm using Facebook SDK 3.5, while login i'm getting following error:
Here is the code which i'm using for facebook login
- (BOOL)openSession:(BOOL)allowLogin
{
NSArray *permissions = ...
1
vote
0answers
18 views
Twitter & Facebook access to webView
I am making an iOS app in which users login to Facebook and Twitter through the iphone accounts.
However, once they are logged in, if I load a Webview with a url leading to Twitter or Facebook, the ...
-1
votes
0answers
27 views
Memory Leak in Objective-C Table View Loading
1 Problem Description
A memory leak problem occurs when a table view runs. No crash has been seen but we can see the memory leak by using Instruments (Xcode menu bar > Product > Profile ...
0
votes
0answers
10 views
FBFriendPickerViewController select friends programmatically
I want to implement "Select All" feature on FBFriendPickerViewController, but I don't really see any ability to select friends from code. Maybe I'm missing something?
0
votes
0answers
36 views
Why Facebook iOS SDK returns invalid access token?
I'm using Facebook iOS 3.5.1 SDK. After successful login/relogin I'm taking access token:
case FBSessionStateOpen: {
if (session.isOpen) {
NSLog(@"token: %@", [[[FBSession activeSession] ...
0
votes
0answers
18 views
com.facebook.sdk error 2 in distribution
I already had this working in older versions of my app but our newest update shows this error: com.facebook.sdk error 2 when logging in to facebook.
The app works fine in the simulator and device when ...
-3
votes
0answers
31 views
iphone development: how to handle done button in friendpickercontroller [closed]
in my app I use friendpickercontroller. I select some friends and proceed. However, even if I don't select any friend, it still proceeds since I could not figure out how to handle "done" button which ...
1
vote
0answers
37 views
Facebook Graph API iOS tag friend whit SLRequest
I have a problem with facebook API. According to the documentation (https://developers.facebook.com/docs/reference/api/post/) of facebook you can tagging a friend whit:
"to": {
"data": [
...
1
vote
0answers
12 views
Hide Facebook Video via the Graph API
I've created an app which allows the user to upload a custom video to their own Facebook profile. But, by a specific client request, I need to hide that video right after posting it. I already looked ...
0
votes
1answer
61 views
ios How does facebook and instagram update those notification numbers (eg message, like, or friend)
Was wondering how facebook and instagram gets their notification notices whenever you're using the app. eg. Message number on facebook, Somebody followed you on instagram, etc. Is it using push ...
-1
votes
0answers
9 views
How to open facebook fanpage by Facebook SDK for iOS [closed]
I want iOS Facebook app to open fanpage by Facebook SDK v3.5 for iOS.
How to do it?
By the way, I know that how to open by "URL Schemes"
http://wiki.akosma.com/IPhone_URL_Schemes
...
0
votes
0answers
40 views
Can't post story to Facebook
I'm using the latest SDK and trying to post a story to facebook, but for some reason it doesnt work. It's only working when I try to post with this code:
NSMutableDictionary<FBGraphObject> ...
0
votes
1answer
31 views
iOS Facebook FQL problems
I'm trying to get the follow FQL statement working in my iOS app
SELECT comment_info,likes,share_count FROM stream WHERE post_id
For some reason i keep getting an error from the graph API saying
...
0
votes
1answer
46 views
Launch website and log in iOS
I'm writing ios app. In my app user input login and password to his facebook account. Is it possible to launch Facebook and, using this login and password, automatically sign in?
This question seems ...
0
votes
1answer
88 views
Facebook Connect Accessing a User's FB Session/Access Token ID?
I have configured my app to correctly allow a user to login via FB Connect 3.1 SDK (for iOS 6), and request email permissions:
NSArray *permissons = [[NSArray alloc] initWithObjects:@"email", nil];
...
0
votes
0answers
29 views
Multiple Prompts for iOS Facebook Account Access
I am attempting to add facebook integration into a project. In iOS 6+, I request access to the user's facebook accounts with the following code.
if (self.accountStore == nil) self.accountStore = ...
0
votes
1answer
21 views
facebook user inforamtion along with contact number
I needed facebook user info in my app. For it I have used "https://graph.facebook.com/me&access_token=%@" I am getting user info properly. But unable to get the contact number of user via graph ...
0
votes
3answers
45 views
How to get post id after successful FB ShareDialog post
I am referring "ios 3.5 how to" by Facebook. Here is my code
[FBDialogs presentShareDialogWithParams:params
clientState:nil
handler:
^(FBAppCall ...
0
votes
1answer
34 views
import facebook albums into app
I want to import pictures from Facebook directly into my iPhone application to get the links out of it.
Is there really no way to filter on the type?
Can I make assumptions about "where" (page wise) ...
-3
votes
2answers
104 views
Posting on friends wall is not working using facebook sdk 3.5.1 [closed]
I'm trying to post on friends wall using facebook sdk 3.5.1 version.Dialog box opens well and FBWebDialogResult is getting "To Post Success" and "Result URL".But when I check on friend facebook wall, ...
-1
votes
0answers
24 views
Fetching FaceBook Data in iOS [closed]
In my project i want to get the user's pending notification, friend request and pending unread message's total count.
For example : if in user's account new messages are 5, friend requests are 2 ...
0
votes
1answer
48 views
Signing in with Facebook - FBSession questions
I've been trying to integrate Facebook and came across some issues and questions.
1.
I have implemented the following method in viewDidLoad:
[FBSession ...
0
votes
2answers
54 views
reduce Facebook SDK size for iPhone app
I integrated facebook SDK in my app, the problem is the size of the SDK (around 12mb), is there any way to decrease this size? i'm using facebook feed dialog only...
I tried to remove "Facebook SDK" ...
-2
votes
0answers
39 views
Access Token error in ios sdk
I am implemented the Facebook using social framework in my app.
I get the user info as per following method.
- (void)me{
NSURL *meurl = [NSURL URLWithString:@"https://graph.facebook.com/me"];
...
0
votes
1answer
33 views
Facebook iOS sdk to take user id
a question about Facebook sdk for iOS.
If I have an active session how can I get only the user ID?
Is there a simple way to obtain this id without use this example code?
if ...
0
votes
0answers
15 views
Social.h vs. required architecture
I am submitting my app however I am getting "iPhone/iPod Touch: application executable is missing a required architecture" error. Once I read solution posted already suggesting to use deployment ...
0
votes
1answer
96 views
How to share multiple post on friend's wall in objective C
Hi! I'm using facebook sdk to post on friend's wall. I am able to post it but when i select multiple friends in FBWebDialog instead of posting two friends simultaneously for each friend a separate ...
-4
votes
0answers
22 views
Send/recieve photos from facebook api on ios [closed]
So I have been working on an application that involves users to send/recieve photos in app from other "friends" using the facebook api... Think like Snapchat, where when you "update" the app, new ...
0
votes
0answers
44 views
want to open facebook by safari instead of Facebook app
I installed Facebook app in iphone 4(iOS 6.0.1).
In my app(code like
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];),
I want to open http://m.facebook.com/XXX link in ...
0
votes
1answer
53 views
iphone development: how to handle fbwebdialogs pop-up buttons
In my app I use FBWebDialogs to sen app request to facebook friends and I do it successfullty. My problem is I cant handle FBWebDialogs pop up windows button. In the code below I can detect X button ...
0
votes
0answers
34 views
iphone development: How to open FBWebDialog with pre-defined receivers and no friend list
I want to send requests to the friends by using FBWebDialog. Is it possible to open FBWebDialog with pre-defined receiver section. I mean, for example I will send request to the friends whose FB ids ...
0
votes
1answer
45 views
iphone development: FBWebDialog without friend list
In my app I want to use FBWebDialog to send "app request" to the multiple users. But I dont want to select those users from the list which comes with the FBWebDialog. I just want to pass the friends ...
0
votes
1answer
73 views
iphone development: sending app requests to multiple facebook friends from friendpicker
I have been searching so long bu could not find any suitable answer so if you have any idea it would be perfect.
In my app i have friendpicker controller it lists all my friends. When I select some ...
0
votes
0answers
24 views
Sharekit not allowing authentication of facebook in-app
I'm nearly finished with my version 1.0 of my app and getting ready to launch and just ironing out niceties in my app.
I'm using the latest sharekit version and everything is setup properly but there ...
3
votes
2answers
87 views
What is the delegate method that will called when closing an iPhone app by pressing (-) not the home button [duplicate]
I'm developing an app and I have embedded facebook login in to that. I want to logout the user, when user closing the application after enter to the background, by pressing (-) not the home button. So ...
3
votes
2answers
77 views
Fb request dialog returns nil incorrectly - IOS Facebok
Thanks for reading!
I'm trying to create a facebook request to enable the user to invite his friends to the app.
NSDictionary *params = [[NSDictionary alloc] initWithObjectsAndKeys:nil];
...
0
votes
0answers
62 views
Facebook table view design?
Im looking for an example of how Facebook and a number of other apps display thier data. Are they using a TableView just without using the interface builder and some other frameworks and drawing the ...
-2
votes
0answers
42 views
For an iOS application, how do I sign in my app using a twitter account?
Basically I am looking for the twitter version of this https://developers.facebook.com/docs/tutorials/ios-sdk-tutorial/authenticate/. I need the user to sign in using his or her twitter account to ...
0
votes
0answers
39 views
Obtain user email from Facebook SessionLoginSample iOS application
I am trying to get the user's email address from Facebook's SessionLoginSample app. I am not sure what I am doing wrong here. I believe this is the correct area where I would obtain the email address. ...
1
vote
0answers
22 views
Facebook feed Dialog implementation
I need to develop a functionality in my IOS app, where I wish to post/publish a url. When the same url is pasted in the Facebook website's update status textbox, it generates a beautiful thumbnail and ...








