¡@

Home 

2014/10/15 ¤U¤È 10:09:55

iphone Programming Glossary: graph.facebook.com

How to upload multiple photos to Facebook from within iPhone app?

http://stackoverflow.com/questions/10197414/how-to-upload-multiple-photos-to-facebook-from-within-iphone-app

Photo API which suggests this URL to upload an image don't forget to ask for the publish_stream credential POST https graph.facebook.com USER_ID photos message optional description source the image's data place optional image's location With the iOS Facebook..

Login to Facebook using FBGraph

http://stackoverflow.com/questions/11805078/login-to-facebook-using-fbgraph

doGraphGet NSString action withGetVars NSDictionary get_vars NSString url_string NSString stringWithFormat @ https graph.facebook.com @ action tack on any get vars we have... if get_vars nil get_vars count 0 NSEnumerator enumerator get_vars keyEnumerator.. self.callbackObject anObject self.callbackSelector selector NSString url_string NSString stringWithFormat @ https graph.facebook.com oauth authorize client_id @ redirect_uri @ scope @ type user_agent display touch facebookClientID redirectUri extended_permissions..

Facebook iOS SDK 3.0, implement like action on a url?

http://stackoverflow.com/questions/12112847/facebook-ios-sdk-3-0-implement-like-action-on-a-url

my solution NSString urlToLikeFor facebookLike.titleLabel.text NSString theWholeUrl NSString stringWithFormat @ https graph.facebook.com me og.likes object @ access_token @ urlToLikeFor FBSession.activeSession.accessToken NSLog @ TheWholeUrl @ theWholeUrl NSURL..

How to integrate Facebook in iOS 6 using SLRequest?

http://stackoverflow.com/questions/12757449/how-to-integrate-facebook-in-ios-6-using-slrequest

NSDictionary parameters @ @ message @ My first iOS 6 Facebook posting NSURL feedURL NSURL URLWithString @ https graph.facebook.com me feed SLRequest feedRequest SLRequest requestForServiceType SLServiceTypeFacebook requestMethod SLRequestMethodPOST.. SLRequest. IBAction postMessage id sender Create the URL to the end point NSURL postURL NSURL URLWithString @ https graph.facebook.com me feed NSString link @ http developer.apple.com library ios #documentation Social Reference Social_Framework _index.html..

Facebook iOS 6 - get user info

http://stackoverflow.com/questions/12904079/facebook-ios-6-get-user-info

else ouch NSLog @ Fail NSLog @ Error @ error Get me void me NSURL meurl NSURL URLWithString @ https graph.facebook.com me SLRequest merequest SLRequest requestForServiceType SLServiceTypeFacebook requestMethod SLRequestMethodGET URL..

how to get user's facebook profile pic via fbconnect in my app iphone? [duplicate]

http://stackoverflow.com/questions/3784782/how-to-get-users-facebook-profile-pic-via-fbconnect-in-my-app-iphone

improve this question Try look deeper through http developers.facebook.com docs api . Here is a link to userpic http graph.facebook.com 000000000 picture Where 000000000 is an id of user logged. UPDATE by Michael Gaylord You can also append the type to the..

How to get photos of a facebook album in iPhone SDK?

http://stackoverflow.com/questions/4921945/how-to-get-photos-of-a-facebook-album-in-iphone-sdk

of a facebook album in iPhone SDK I am developing a iPhone application which get facebook album with this URL https graph.facebook.com me albums access_token 2227470867 2.ZJr73vaEvFeN4fI_A70RFw__.3600.1297090800 100000566543036 WmgxdwULBgKXl8J7ksGIA1tyGik.. returns an array of Album objects each of which has an id . If an album had an id of 99394368305 you can go to https graph.facebook.com 99394368305 photos to get an array of photo objects . Each of these will have the picture and source properties to get the..

How to comment or like a photo in facebook through FBconnect or Graph API in iPhone SDK?

http://stackoverflow.com/questions/4957260/how-to-comment-or-like-a-photo-in-facebook-through-fbconnect-or-graph-api-in-iph

your Acces Token to the Graph API e.g. your photo has the ID 123456789. So you have to post your Access Token to https graph.facebook.com 123456789 likes . To comment on a Photo do the same but post a message as a parameter to the Graph API e.g. https graph.facebook.com.. 123456789 likes . To comment on a Photo do the same but post a message as a parameter to the Graph API e.g. https graph.facebook.com 123456789 comments . In Code call the following method defined in Facebook.h with your path and no parameters for Like and..

Facebook access token server-side validation for iPhone app

http://stackoverflow.com/questions/5406859/facebook-access-token-server-side-validation-for-iphone-app

token in hand. In such a case the simplest way to validate an access token is to issue the following request https graph.facebook.com me fields id access_token @accesstoken Here replace @accesstoken with the access token you have. I will breakdown the url..

Bad URL when requesting with NSURL

http://stackoverflow.com/questions/6287230/bad-url-when-requesting-with-nsurl

this kind of URL in iPhone 4.0 SDK access token slightly modified because you don't really need to see it https graph.facebook.com me sdk ios sdk_version 2 access_token 123902817987 8cb9e8408d2685cef853cd80.9 747882379 UGu5NvcAHiXuGEGzkq format json limit.. I tried replacing with as suggested here but doesn't work. Asking it from the terminal looks like this curl https graph.facebook.com me statuses sdk ios sdk_version 2 access_token 9999955817987 8ab9e8408d2685cef.3 747882379 UGuxWDuM format json limit 40.. message An active access token must be used to query information about the current user. 1 Done curl https graph.facebook.com me statuses sdk ios 3 Exit 127 access_token 9999955817987 8ab9e8408d2685cef.3 747882379 UGuxWDuM 5 Done limit 40 Any ideas..

iOS SDK posting a link & displaying a thumbnail

http://stackoverflow.com/questions/6509838/ios-sdk-posting-a-link-displaying-a-thumbnail

approach to this would be to call the Graph API instead of using a dialog. So if you make an HTTP POST to https graph.facebook.com me feed and supply the message and link parameters the image should be automatically selected by Facebook. See https developers.facebook.com..

How to display Facebook Fan Wall in iPhone App?

http://stackoverflow.com/questions/7343156/how-to-display-facebook-fan-wall-in-iphone-app

touch facebook facebook graph api share improve this question You can pull in the list of wall feeds from https graph.facebook.com cocacola statuses access_token ... a preview can be seen with the graph api explorer here . Then you would just parse the..

Facebook api BUG?

http://stackoverflow.com/questions/7874301/facebook-api-bug

try something like this.. just convert the string to a URL.. NSString urlString NSString stringWithFormat @ https graph.facebook.com me videos uploaded date_format U access_token @ authenticationKey_ stringByAddingPercentEscapesUsingEncoding NSUTF8StringEncoding..