Tagged Questions
0
votes
0answers
45 views
iOS Facebook SDK “An active access token must be used to query information about the current user.”
I have a token but keep getting this error: "An active access token must be used to query information about the current user." Any help is appreciated :)
NSLog(@"TOKEN : %@",[[FBSession ...
0
votes
0answers
31 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 ...
1
vote
1answer
25 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 ...
2
votes
1answer
81 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
2answers
75 views
ios app crashes with no error and no crash report
I am currently importing all the facebook birthdays and inserting them in core data,then i sort them according to the latest bday's(fetching and sorting).
When i use facebook to sync and get all the ...
0
votes
1answer
36 views
Facebook graph api
Whenever I click anything with Facebook, a pop-up shows up "YOU HAVE ALREADY AUTHORIZED APP ", even everytime I login through facebook.Can I remove this popup. I am using facebook sdk 2.x for IOS.
0
votes
1answer
71 views
facebook login works on iphone simulator but not on iphone device
In my app, I want to take photos from the facebook. so i used facebook ios sdk. i can be able to authorize from the below code:
if (appDelegate.session.isOpen) {
//[appDelegate.session ...
0
votes
0answers
79 views
FBloginview not working in iOS5
I am using fb ios sdk 3.5, and i tried to run sample project named Scrumptious came with the package, it uses FBLoginView for login purpose, but FBLoginView is not working on iOS5.0. When i press the ...
0
votes
1answer
60 views
How to pass FBGraphUser object to appDelegate
I am quite new to the FB SDK and iOS development in general. I am trying to pass the FBGraphUser object to the app delegate and then use it later in another view. My app connects to FB correctly and ...
0
votes
0answers
75 views
Facebook Graph API call not loading friend's pictures
I am new to iOS and Facebook API. I have learned from a lot of tutorials but some things are still not clear to me. This is my first real FB/iPhone app.
In the master view, I first login
- ...
0
votes
1answer
128 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 ...
1
vote
1answer
77 views
facebook login Error while user has enabled secure login - iPhone
I am working on an application which uses FB login. For login from faceBook I am using FBGraph and it works fine if users have disabled secure login in their account, but if user enables the secure ...
0
votes
1answer
22 views
Strange Delay to Update TextField
Im getting Facebook User Data to auto completing signup textfields.
Problem: I did a test and NSLog returns information quickly, but to update the TextFields.text it's delaying.
Code:
- ...
0
votes
1answer
90 views
How to parse the data of JSON response in objective c?
I got a JSON output in this link
I extracted the id in this output. (i.e)
419023188150340,
419023228150336,
419023278150331,
419023318150327,
419044998148159,
419045028148156
using the following ...
0
votes
1answer
42 views
Getting page_access_token by graph api in FBConnect ios
Actually i want to upload photo on facebook fan page so for this i wrote below code
[m_facebook setAccessToken:@"BAAGgxy3PqqcBAHqByi2JOtTs ...
0
votes
0answers
89 views
Request timeout when uploading video from IOS to Facebook
I have this method I am developing which will upload a video from my application to Facebook however I'm getting a request timed out error.
The video size: 1.5mb~
The video type: mp4
Code:
NSData ...
0
votes
0answers
22 views
posting photos to a Page's Wall iphone
As per Facebook developer document
https://developers.facebook.com/docs/reference/api/page/#photos
i am trying to post a image ob facebook page but every time image is posted as my Wall post not as ...
0
votes
1answer
94 views
How do I obtain results of FBRequest requestForMyFriends as a JSON formatted file?
I'm using Objective-C and developing for iPhone.
I'm sending a request for the friends of a logged in user and writing the data to file to disk like so:
[[FBRequest requestForMyFriends] ...
0
votes
1answer
41 views
how can i search facebook user based on diffrent parameter
I am developing an iphone app.
in which how can i search facebook user based on different parameters like name,college,city?
I know there is api for search user ...
1
vote
0answers
24 views
iOS Facebook SDK - How to filter specific category of a page?
I try to find specific category of user page such as "Clothing" or "Author".
The only way I have is to query whole "me/likes" from Graph API Explorer, such as
...
6
votes
1answer
252 views
Facebook curl like post request using open graph
I want to create the like button in my iOS app by using
curl -X POST \
-F 'access_token=USER_ACCESS_TOKEN' \
-F 'object=OG_OBJECT_URL' \
https://graph.facebook.com/[User FB ID]/og
.likes ...
0
votes
0answers
46 views
Using Single object fbgraph object in multiple controller
I am making an app in which I want to get details of user and post on facebook behalf of the user.
I am using fbgraphApi library. In my project I have created object of fbgraph in main view controller ...
0
votes
1answer
49 views
Requesting user information and Friends from Facebook
I am looking to combine a call to Facebook Graph API. I would like to collect both the friends and profile information in one go.
I have also raised a separate question issue here - Facebook SDK ...
3
votes
1answer
214 views
Facebook SDK collecting user information and friends
I am trying to use the Facebook SDK to collect user information and friends. Ideally I would like to use FBRequest as opposed to FBConnectionRequest. As detailed on the Facebook Developer page it says ...
0
votes
0answers
46 views
Facebook Graph API get user wall data Objective C
I need to retrieve a users wall posts. I have the following code but the results only retrieves the information of the User like its name, about, likes, etc. No data about its wall.
FBRequest ...
1
vote
0answers
135 views
Facebook Graph API - Search places fail
I use following codes to get places information with my location in Facebook iOS SDK.
[FBRequestConnection startWithGraphPath:[NSString ...
0
votes
0answers
96 views
Facebook SDK FBGraphUser can't store local copy
I've started Facebook integration for a project and I've run into a problem. I am attempting to store the logged in user as a local object so the information can be referenced later, but I can't seem ...
1
vote
1answer
220 views
Parse Facebook Feed Json Data
I want to parse a facebook feed.
Here is my json Url: http://www.facebook.com/feeds/page.php?id=199009743552420&format=json
So I got this type of Data in response:
"content": "\u003Ca ...
0
votes
0answers
46 views
comment on public page via Facebook login
I have used FacebookLikeView (for like the page from our app e.g. http://blog.impact-works.com/2011/07/28/updating-editing-facebook-event-via-graph-api-using-asp-net-c-part-7/)
...
1
vote
1answer
35 views
Count of Checkins not matching Count of Places
I am looking to pull in my recent checkins, as well as find the place name. I currently ask for user_status permissions. I start off by requesting the data like this:
-(void) makeCheckinRequest{
...
0
votes
1answer
83 views
Limit the result that I got from FBRequestConnection
I'm using Facebook iOS SDK to retrieve the data from Score.
Below are my codes...
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
...
0
votes
1answer
157 views
Facebook FBOpenGraphAction user message not working
I'm uploading a photo as an open graph object, then tying it into my open graph action once it returns the URL.
Everything is working great so far, but I'm not able to get the custom user message ...
0
votes
1answer
161 views
How to get friends posts on my facebook wall using graph API for iPhone
I am using below code(Graph API) to parse my facebook feed....
FbGraphResponse *fb_graph_response = [fbGraph doGraphGet:@"me/feed" withGetVars:nil];
SBJSON *_jsonparsing=[[SBJSON ...
0
votes
1answer
921 views
Facebook iOS sdk 3.2 post to wall without FBWebDialogResult
I would like to post to user's wall without showing a pop up just like FBWebDialogResult do. I have used the SDK to login and have user permission to publish to wall. Is this possible with using ...
2
votes
2answers
263 views
Problems passing Facebook friend name into text field
I'm working on selecting a facebook friend. I'd want to display the facebook friend's name in the textfield that launches the facebook friend picker.
Thanks!
Also, is there a difference between ...
0
votes
1answer
165 views
Facebook POST using Graph API from iOS app
I have successfully implemented FBGraphAPI in my iOS app. Here, after logged in , the FB app(I created earlier & gave the app ID in my code) installed and I can POST text or others(image, file ...
2
votes
1answer
228 views
Post message in user's friends wall in facebook iOS [duplicate]
In my app i get the friends list of user and also post wall in friends wall.I had successfully got the friends list but when i posted in their wall.it couldn't work.
So Please Help me.
I got Error ...
0
votes
1answer
190 views
how to display facebook news feeds in ios without Login?
I need to display facebook feeds in ios. For example I need to display the feeds of "https://www.facebook.com/Google" in a view.
I followed this link but the solution here displays only the full ...
0
votes
3answers
208 views
iOS Facebook SDK - FBLoginView
For some reason I cannot get this code to work:
// Create Login View so that the app will be granted "status_update" permission.
FBLoginView *loginview = [[FBLoginView alloc] init];
loginview.frame ...
0
votes
0answers
114 views
post image and link in ios facebook
Here i needs facebook sharing using GraphAPI Post
In the below code is worked and the picture is loaded in separate page.Its working well
NSMutableDictionary *params = [NSMutableDictionary ...
0
votes
1answer
146 views
How do I post in facebook a big image on a friend's timeline without using sdk feed dialog
I have an app that lets the user create a custom-made greeting card (a big image) and send it to a facebook friend who has their birthday / another occasion on that day.
I want to allow my user to ...
0
votes
1answer
138 views
FBRequestConnection is very glitchy 400 error
I get an Error: HTTP status code: 400
- (void)openSession
{
[FBSession openActiveSessionWithReadPermissions:nil
allowLoginUI:YES
...
0
votes
0answers
62 views
How to delete video posted on event's wall using facebook graph api?
Following is my event id 160575387429073 and if you can access 160575387429073/feed you can see one photo and one video posted on event's wall. I want to delete my video. I am using the following ...
0
votes
0answers
124 views
Can we use FB Graph api for Mac OS apps to retrieve and post data on Facebook?
I am developing an app for Mac OS, But am not confirm/sure whether FB Graph api for iOS will work for Mac OS apps too in retrieve and Posting data on wall ?
Please guide me in the light of your ...
1
vote
1answer
74 views
Facebook request does not return email
No email is outputted from the Facebook request. How do I get this? I need it for my login/signup process
- (void)request:(FBRequest *)request didLoad:(id)result{
NSLog(@"FACEBOOK RESULT %@ ", ...
0
votes
2answers
69 views
sharing text on “facebook Page” in ios from our app
I have a Facebook page, and i want to share some text on that page just like my status as we share on our "me/feed" from our application.
Please someone suggest how i should go about it?
0
votes
2answers
114 views
posting status on facebook from ios app using facebook 3.1 SDK
I am working for an iOS app and I want to integrate Facebook sdk 3.1 for posting status on facebook but I really dont have any idea how to do it. Can anybody please provide me link to easy tutorials ...
0
votes
1answer
50 views
Showing a facebook page feed on IOS app
I want to show a facebook feed of a page into my IOS app. Now I looked at a PHP example and that is doing the following.
$profile_id = "111111111111111231";
//App Info, needed for Auth
$app_id = ...
1
vote
1answer
48 views
getting the facebook profile picture with a simple NSMutableURLRequest
I'm trying to get the URL for facebook profile pictures in objective-c. I am doing it as follow.
-(NSString *)getProfileURL:(NSString *)userId{
NSMutableURLRequest *request = ...
1
vote
0answers
59 views
comment from facebook api with the graph api with objective - c
I am trying to get comments of a facebook post with the graph api. Now I have the following method.
+(NSArray *)getCommentsWithParam:(NSString *)Param
{
NSString *request = [NSString ...







