0
votes
1answer
46 views

iphone development: how to auto facebook login if the facebook app already logged in

In my app users can login by using facebook. I also have Facebook official app in my mobile phone and it is logged in. When I try to login from my app it asks for email and password. Is it possible to ...
-2
votes
0answers
22 views

get facebook friends' user name for iOS app [closed]

I want to retrieve my friends' username using facebook sdk for iOS app. I get friends' ID and name but I am not able to get usernames of my facebook friends. So is it possible to get username? Is yes, ...
0
votes
0answers
27 views

Facebook Sharing using Sharekit not working

I have been using Sharekit for long time and i have never faced any issues with it. Im trying to share Image and Text using Facebook Sharekit. I am able to Login using Facebook account but i am not ...
0
votes
0answers
23 views

Retrieving Facebook check ins using iOS graph API - no data

I'm trying to use Facebook's Graph API to retrieve a list of checkins for myself from an iPhone application. I've requested a token and am able to access my profile information and a list of my ...
0
votes
2answers
34 views

Posting an image from a file instead to Facebook?

How would I go about posting an image from a file instead to Facebook? This works fine: SLComposeViewController *controllerSLC = [SLComposeViewController ...
0
votes
2answers
45 views

How to use the Facebook SLComposeViewController in a UIView instead of a UIViewController

I'm having a problem using the Facebook SLComposeViewController in a UIView. The problem I'm having is because I have a UIView and not a UIViewController that I'm inheriting from. I've imported: ...
1
vote
1answer
39 views

Muti select uiimagepickercontroller like facebook app

I am developing an app, In which user can select multiple picture and upload it server. As of now i am using QBImagePickerController for selecting multiple pictures but client demanding us to make ...
1
vote
0answers
66 views

Send app invite to friend

I want to use facebook sdk (the newest one, 3.5) to send a request to a friend to try out my app. I have got it to work using the code below but no notification is sent to the user. It only shows the ...
0
votes
0answers
45 views

Post both image and caption facebook sdk

I want to be able to allow my users to make a post to their wall and post either a caption or an image AND caption. I am building for iOS 6 and this is how I have implemented my function. ...
1
vote
0answers
35 views

uploading video to Facebook in app

I'm trying to implement video uploading via Facebook in my app. I was using ESSVideoShare but that stopped working with Facebook, I assume due to some recent update on Facebook's part. I followed ...
2
votes
1answer
69 views

Is it possible to Customize FaceBook PostView in iOS 6?

I'm using social framework to share with FaceBook. Is it possible to change the text on indicated buttons in the following screenshot? Any help would be appreciated.
0
votes
0answers
17 views

Facebook thumbnail not generated objective c

When we post a url in the Facebook (update status), it generates a small version (with thumbnail and text) of the url and allows to add it to your post as a pin. I want this exact same feature in ...
0
votes
0answers
28 views

Facebook installed parameter not returning data

I am attempting to determine who among my facebook friends are currently using my app. The general wisdom, as far as I can tell, is to use the graph api, and send the 'installed' parameter when ...
0
votes
0answers
36 views

Access options are not permitted for this account type. The options argument must be nil.;

I'm looking at my crash logs and i could see this crash: "Access options are not permitted for this account type. The options argument must be nil.;" it's my first time to encounter such crash so i ...
1
vote
1answer
38 views

I get the Malformed access token for Facebook in ios 6

I want to fetch the facebook friends profile picture.I also give the access_token for it. I search a lot on net but didn't got any good solution. my code is as follow: - ...
-2
votes
1answer
47 views

Post on friend wall using Graph Api in ios not working [duplicate]

I have get my friend id using facebook graph and post message in my friend wall not working. AppDelegate *getdelegate=(AppDelegate *)[[UIApplication sharedApplication]delegate]; [[getdelegate ...
0
votes
2answers
82 views

How to fetch Facebook friends in ios 6?

I want to send invite facebook friends from my app same as doing like in Instagram app. But i can't find any good tutorial for that. I able to get the name & id of the friend but I can't able ...
0
votes
1answer
51 views

Display profile picture of some facebook friends (with the id) in a tableview

I work on facebook graph api. And I've allready get the id of users which have using my app. I can display the id of users and what I want to do , It's display in each cell of my tableview a ...
0
votes
1answer
20 views

Get the date of the first connection with Facebook to my app

Is there a way to get the date when the user downloaded / installed the first time an app via Facebook ? In my app , in the first launch you have to connect with Facebook. So I wonder , is there a ...
1
vote
1answer
24 views

where is my uploaded facebook open graph object link

In the most recent iOS SDk 3.5 they allow users to upload object directly to facebook (which is outlined here). I have the following code which executes successfully and I am able to get the object ...
1
vote
0answers
24 views

PFFacebookUtils logInWithPermissions:block loses permissions

I try to user Parse login using Facebook. Every time logInWithPermissions is used, the permissions are nil. The following code always produces the same output: [PFFacebookUtils ...
2
votes
1answer
72 views

error in using FBRequest to post open graph action in Facebook 3.5 iOS SDK

I am trying to publish an open graph action using the iOS SDK, using the following code: [FBRequestConnection startForUploadStagingResourceWithImage:image completionHandler:^(FBRequestConnection ...
0
votes
1answer
46 views

Invite Facebook Friends in IOS6

I want to fetch the facebook friend list & send invitation for my app. i tried following code: ACAccountStore *accountStore = [[ACAccountStore alloc] init]; ACAccountType ...
-1
votes
2answers
48 views

Invite facebook friends in Iphone [closed]

I want to integrate Facebook in my app. The functionality like this the user will login in to Facebook, then fetch the all friends & send the friend request for the app. I uses IOS6. So, is there ...
0
votes
0answers
37 views

iOS facebook login troubles

i integrated facebook login into my iOS application. When logging in with facebook it works for myself and my other testers but when we launched the application people were having difficulty logging ...
0
votes
0answers
30 views

Does parse support facebook 3.5 sdk?

I've recently upgraded my facebook sdk to 3.5. Now however I seem to be facing this constant error: Facebook error connect: Write Privacy is not specified. Please tap Cancel to return to ** and try ...
0
votes
1answer
116 views

Facebook FQL - Error: The operation couldn’t be completed. (com.facebook.sdk error 5.)

I am running the following Facebook FQL for my iOS app. It is giving me the error: **Error: The operation couldn’t be completed. (com.facebook.sdk error 5.)** I have tested the permissions and they ...
2
votes
2answers
68 views

IOS app with data stored in server - how to implement facebook user registration (from server or app?)

I am building an IOS app, which doesnt have any data with it. When it wants to show friends list for example, it will request server for the json data etc.. So, how can I implement facebook ...
0
votes
1answer
29 views

Open Link to Instagram Native

To open a Facebook Native profile, I can use: NSURL *url = [NSURL URLWithString:@"fb://profile/<id>"]; [[UIApplication sharedApplication] openURL:url]; Is there any way to do the same thing ...
0
votes
1answer
29 views

get error for facebook login “the operation cannot be completed (com.facebook.sdk error 2)” for iPhone 5

I created an application using facebook sdk 3.1.1 but i get error like "the operation cannot be completed (com.facebook.sdk error 2)" for iPhone 5. my bundle id and app id are correct. So can any one ...
0
votes
1answer
40 views

Facebook JSON feed - __NSArrayM insertObject:atIndex:]: object cannot be nil

I'm trying to parse a Facebook Page Json Feed to a table view and followed this Tutorial and I'm getting this error: "Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* ...
2
votes
1answer
126 views

new facebook account in iOS 6 settings

I am using following code to access the facebook [FBSession openActiveSessionWithAllowLoginUI:TRUE]; NSArray *permissions = [[NSArray alloc] initWithObjects: @"email", ...
0
votes
1answer
18 views

Facebook auth method in Cocoa can this be improved?

This is how i currently receive my access_token from facebook, currently looking at creating a simple Facebook client for mac. NSString *clientId = @"********"; NSString *scope = @"read_stream"; ...
0
votes
1answer
98 views

The permission of Facebook post is “Only me” using FBWebDialogs

I want to post text and link from iOS app to user timeline. I copy and paste FBWebDialogs example. Problem 1: The post appear in my timeline but the permission is "Only me", not friend or public. ...
0
votes
1answer
92 views

Facebook posts via some app in iPhone

I am using SLComposeViewController framework to create Facebook connectivity through iPhone app, to post feeds from my app to Facebook. However, i want to use a particular account for e.g. ...
0
votes
0answers
33 views

iPhone app freezes on presentViewController with SLComposerViewController

I am implementing sharing with Facebook and Twitter - On the simulator both of these work, but on my iPhone 4S running iOS6 the Facebook button freezes the app. The code is the same as it is for the ...
0
votes
2answers
73 views

How open facebook and twitter on a specific page in iOS

Which is the line of code to open facebook and twitter displaying a given page? tried with this for Facebook NSURL *target = [[NSURL alloc] initWithString:@"fb://profile/WindyCityCrossFit"]; ...
0
votes
0answers
34 views

Share a a link to FB

I'm new to iOS development and I need when the users hits the share button, the app should share a link to facebook without creating a specified app on FB, I just want to share the link.
0
votes
1answer
113 views

Getting facebook friends profile pictures the fastest way - iOS

I am trying to get my friends pictures with FBConnect, The requested URL is: pictureURL = [NSString stringWithFormat:@"https://graph.facebook.com/%@/picture?width=50&height=50", [data ...
0
votes
1answer
57 views

Facebbok SDK 3.1 rejects some users some times

I upload the video on facebook. I also refer this Facebook iOS 3.1 sdk login with publish permission callbacks for facebook error. when I login with Facebook Application or from my app, the ...
0
votes
2answers
71 views

UITableViewController buttons stick to top during pull to refresh

I am trying to figure out how to have a UITableView with a view at the top which scrolls with the table, but when you pull to refresh, the view stays at the top of the screen and the refresh control ...
2
votes
2answers
41 views

logout from facebook completely

I have integrated facebook SDK and able to login to facebook. If user is enabled with facebook account on iOS settings then it ask for permission to acces in app otherwise it goes to safari for ...
0
votes
0answers
125 views

Create app-owned object using Facebook iOS SDK 3.5

With the new Facebook iOS SDK 3.5 is possible to create app-owned & user-owned objects besides self-hosted objects. For creating a user-owned object I can use this code: ...
2
votes
0answers
67 views

facebook login using SDK

I am able to get the user profile permissions if user has set facebook account in his iPhone settings. For this I have used following code: if(!_accountStore) _accountStore = [[ACAccountStore ...
0
votes
1answer
86 views

Infinite Session with facebook ios sdk FBLoginView

I am making my first attempts on FB integration with the iOS SDK. I have succeeded in establishing a connection with my fb app over the FBLoginView which works so far. Here are my corresponding ...
0
votes
1answer
38 views

Need to pull facebook IDs from array of “friendUsers” and query Facebook for their names or profile pictures

I'm doing this in kind of a roundabout way. I'm pulling users who are current users of my app as well as Facebook friends with the current user. When you print friendUsers [which is an array] you get ...
0
votes
3answers
97 views

FBSDKLog: System authorization failed:

I have added facebook sdk for accessing the user account. But when user is already login in facebook via iOS 6 facebook then in my app on the very first page it must shows the alert that app is asking ...
2
votes
0answers
42 views

allow Facebook profile permissions

I want to implement the same Facebook authentication concept as in the friend smasher game. In this If user is logged in on facebook via iOS facebook app then it only asks the user for accessing ...
0
votes
0answers
51 views

Facebook acces gives empty pop-up

I'm building an app for iOS. This app gets the news feed of a Facebook page, and therefore I need to give acces to a Facebook app. This works fine on my iPhone But when I want to open the news feed on ...
2
votes
0answers
31 views

access basic profile when user login in his/her iOS app

I have done with the facebook graph api for facebook authentication or to get the user facebook detail but with it I also want to implement one more thing in which .. Suppose user is already login on ...

1 2 3 4 5 20