30
votes
6answers
2k views
Upload multiple photos on Facebook using Batch Request
I had done following code with reference to following link to create batch request for uploading multiple photos in Facebook.
I had got some solution for uploading multiple photos on Facebook through ...
12
votes
3answers
778 views
Facebook Batch Photo Upload iOS
I am having some trouble trying to get the Facebook iOS SDK to batch upload photos. Currently I can upload them one by one, but I would like to batch the requests if possible. I have read this post ...
11
votes
3answers
18k views
How to publish from iOS application to facebook wall without user amending message
I'm writing an iPhone game and want to publish the user's score to their facebook feed.
I've managed to knock together an example where the user agrees with the authorisation and then a dialog ...
8
votes
2answers
3k views
Using app access token in IOS
Since Facebook changed their policy on having a access token or not I am now forced to include an access token to fetch a user public posts.
As read in the documentation I can use an app access ...
8
votes
1answer
1k views
iPhone post images to Facebook Feed
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
photoDescription, @"message",
image, @"image",
...
7
votes
2answers
3k views
iOS - How to complete long process in background
My app uploads a video to Facebook. I'd like to complete the upload in the background, even if an impatient user clicks the Home button during the upload.
After some reading, I tried this:
...
7
votes
4answers
4k views
Facebook iOS SDK 3.0, implement like action on a url?
I'm trying to implement Like via the facebook open-graph-api with the Facebook iOS SDK 3.0.
Everything seems to work except the FbGraphObject and that's because I have no idea how it should look ...
7
votes
1answer
307 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 ...
7
votes
2answers
3k views
FaceBook iOS - check if my facebook app is allready authorized
My question is how to check if my FaceBook app is already authorized for posts by the user, can't find any info on that.
I'm using:
Facebook* facebook = [[Facebook alloc] initWithAppId:@"1234567"];
...
7
votes
1answer
609 views
Can we invite people to use our app or send friend request from the app via Facebook in iOS 5?
Consider X and Y are friends in Facebook and they both have installed an app in their respective phones. But they are not friends with each other in that app's friend list. So now, can X send a friend ...
6
votes
2answers
7k views
How to invite friends to my application via facebook iOS SDK and Graph API
I'm writing an iPhone application.
I want to give the user the option to invite friends to start using my application via Facebook.
More specifically I want to present a dialog that will let the ...
6
votes
1answer
2k views
Facebook API - where to instantiate and how to properly implement handleOpenURL
I'm working through the Facebook API for my iPhone app, and have two questions:
All documentation/examples seem to put everything in the appDelegate: instantiating the Facebook object and authorizing ...
6
votes
3answers
328 views
FBGraph API not coming in land scape mode
I am developing an iPad application in which Login is done using Facebbook graph API.My App supports landscape mode. I have integrated FBGraph API , but it is not coming in landscape mode.Please ...
5
votes
1answer
5k views
Multiple requestWithGraphPath Facebook iOS
Maybe a simple question but I can't seem to get it. I want to get the users profile picture but also want search his/her posts. Like this:
[facebook requestWithGraphPath:@"me/picture?type=large" ...
5
votes
3answers
2k views
iphone sdk upload video on facebook
I am trying to upload video from the iPhone application using FBConnect. Actually I have tried several ways but unfortunately without any success.
First. Using "facebook.video.upload" REST method and ...