Skip to main content

All Questions

0 votes
2 answers
425 views

Very strange issue during downloading user's FB profile pictures on iPhone

I develop the app for iPhone and use Facebook API to do some social activity. I have to download user's profile picture, so I wrote the code to get its URL via FQL and to download it. At first look ...
SoFx00's user avatar
  • 11
0 votes
1 answer
55 views

IOS: FQL Statement, no results

I want to get the name of the pages, where user is the admin. but there aren't any results. I use below code, NSString *query = @"SELECT name FROM page WHERE page_id IN " @"...
Chanuka's user avatar
  • 199
0 votes
1 answer
602 views

FB integration in ios app issues

I have integrated the facebook in my ios app and it is working nice. But when i stored my FB credentials in setting it is not working. It goes in following state - (void)sessionStateChanged:(...
Raj's user avatar
  • 637
2 votes
1 answer
503 views

Display list of friends using same in uitableview

i'm struggling to get this done. I 've made a FBRequest to see who (in my facebook friends) have installed my app. Here is my code -(void)viewDidload { [[FBRequest requestForMe] ...
user avatar
1 vote
1 answer
19k views

Facebook: Get facebook messages for specific Date?

I wanted to get facebook's messages not Feeds. I've searched about it but did not find the solution. I have also looked into FQL for the same but didn't find any useful things. Is it possible to ...
user1859900's user avatar
0 votes
1 answer
386 views

Issue using FBRequestConnection error handler for fetching Facebook data

For fetching all the friends details at a time,I have used FQL query and FBRequestConnection with error handler to save all the data in to an array i.e. - (void)fetchFriendDetails { NSString* ...
Eshwar Chaitanya's user avatar
2 votes
2 answers
3k views

Parse retrieved Facebook friend details data

I have used FQL query in order to retrieve the friends list at a time: -(void)fetchSaveUserFriendDetails { NSString* query = [NSString stringWithFormat:@"SELECT uid,name,birthday_date FROM user ...
Eshwar Chaitanya's user avatar
1 vote
1 answer
522 views

Get Active Albums in Facebook Using FQL Query

I'm using the Below Query to retrieve the Album Names and album id, SELECT aid,name FROM album WHERE owner = me() But in these fql query it retrieve all albums Name. But some of the albums doesn'...
Manoj Arun S's user avatar
2 votes
1 answer
4k views

Get publish permission for Facebook app for iOS with -openWithBehavior:completionHandler:

In my application I need user to sign in to Facebook, get friend list in my table view and Post on feeds, but I don't want to redirect the user anywhere. so I used -openWithBehavior:completionHandler: ...
Aditya Mathur's user avatar
0 votes
2 answers
81 views

facebook API permissions

Just starting out with Facebook's API. I have a client that sends me the access_token after logging into to FB on iPhone. I am wondering where I would specify the permissions I need, for example to ...
0xSina's user avatar
  • 21.3k
0 votes
1 answer
102 views

FQL photo created last day

How would I be able to fetch all photos taken on Facebook exactly a day ago using FQL? At the moment, I have: SELECT src_small FROM photo WHERE pid IN (SELECT pid FROM photo_tag WHERE subject=me()) ...
HHHH's user avatar
  • 1,197
-1 votes
1 answer
812 views

FQL for getting facebook user ids does not return "paging" key in response

Hi i want to get list of my fabebook friend ids with paging of 100 users. The problem is that if i set hte FQL to NSString *fqlString = @"SELECT uid FROM user WHERE uid IN (SELECT uid2 FROM ...
Ilker Baltaci's user avatar
-1 votes
2 answers
696 views

FBGraph and FQL use to get the friends contact number and emailID in iPhone

I am using Facebook API to get the contact number and email id of friends, I worked on fbgraph and fql and uses all queries from https://developers.facebook.com/docs/reference/fql/, but in forum page ...
user1089187's user avatar
0 votes
1 answer
414 views

Receive specific feeds from facebook using graph api

I am developing an IPhone app. The user can post to his wall and now I want to read ONLY the news feeds that was posted from the IPHone app. When I use https://graph.facebook.com/me/feed?...
Yaniv Efraim's user avatar
  • 6,673
0 votes
2 answers
367 views

How can I replace 'me()' term in FQL iphone

I am creating an iphone app using Facebook api. Here I'm using the following query to get the friends details; NSString* fql1 = [NSString stringWithFormat:@"SELECT uid,pic_square, name,...
Mithuzz's user avatar
  • 1,091

15 30 50 per page