fbconnect

How to download your own and your friends' profile image through FBConnect on the iPhone

I'm using the FBConnect library for the iPhone. I successfully log in, retrieve the user account's name, and the list of his friends. However, I haven't yet found a piece of code that shows how to retrieve/download the profile image for the user himself, and his FB friends. Any help or snippet to share? ...

iPhone FBConnect, dashboard.addnews

Hi, The question is: how to add news via FBConnect?? I have the following code: NSString *newsBody = @"[{\"message\": \"News message\" }]"; NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObject:newsBody forKey:@"news"]; [[FBRequest requestWithDelegate:self] call:@"facebook.dashboard.addnews" params:params dataParam:n...

Android FBConnect: unable to get extended premissions

Hi, when I login in and try get extended premissins displays "You must be logged in to Facebook to use this feature". How can I get extended premissions for posting messages in facebook? ...

Showing popup in the new FB JS SDK

HI, I used to have an Href in my website, when users clicked on it, multi friend selector showed so they can incite their friends to my website. That was done using the following code: FB.ensureInit(function() { var dialog = new FB.UI.FBMLPopupDialog('XXXXXXX', ''); var fbml = 'Multi-Friend-Selector FBML' dialo...

UIAlertView Dismiss Not Really Dismissed

Below is the code I'm using to do a retry on an FBConnect session. When the [self loginToFaceBook] fires FBConnect adds a subview to 'window' which is still the UIAlert view, so when the UIAlert really dismisses it takes the FBConnect view with it. Any idea as to the best way to wait for the UIAlert view to be gone. -(void)alertView:(...

Facebook Graph Api doesn't redirect to my callback

I am following the steps to do the authorization as described here, but I am not redirected to my callback url. I get the following five steps after calling the first one: https://graph.facebook.com/oauth/authorize?display=touch&client_id=...&redirect_uri=... https://www.facebook.com/connect/uiserver.php?display=touch&c...

iphone : FBConnect Auto post to user wall

Hi, i want to auto post to a user wall from my iphone applications ( without that "publish" "skip" dialog box ). how i can do that ? ...

FBConnect - uploading images to Wall

Hi All, i've configured FBConnect and it uploads to the wall, but what i want to do is take a screenshot and then upload the screenshot to FB. In the below code there is an image but as a url. Can i intersect this and put in my screenshot image? FBStreamDialog *dialog = [[[FBStreamDialog alloc] init]autorelease]; dialog....

iphone fbconnect. does it work with OS 2.2.1 ?

Hi, does fbconnect works with iphone OS 2.2.1 ? ...

Window Leaked on FBConnect in Android?

how to rectify this Window Leaked Exception. i cant find why its occured. My LogCat Info: 05-07 17:25:05.402: ERROR/WindowManager(13595): Activity com.codecarpet.fbconnect.FBLoginActivity has leaked window com.android.internal.policy.impl.PhoneWindow$DecorView@433b9ae0 that was originally added here 05-07 17:25:05.402: ERROR/WindowManag...

cookies required in FBConnect in android?

In My FBLoginActivity there is a error message "cookies required" with yellow background has shown. how to remove it or how can i rectify it? ...

Post photos Facebook fan pages and/or album using FBConnect on iPhone

I've been successful in doing a post to a fan page using fbconnect on the iPhone. I also can upload a photo to a friends wall, but the same code won't work to upload a photo to a fan page. I also can't upload a photo to a friend's album. Has anyone been successful in uploading a a photo to a friend's album, or a photo to a fan page or f...

FBConnec how to use variables in FBStream Dialog?

I am using a FBStreamDialog to publish to a users wall in my iphone app i am creating. How can i publish the value of a variable into dialog.attachment? eg. i want a name to appear in the description section ...

FBPermissionDialog bug, showing "Welcome to Facebook" page

I'm experiencing a weird bug that I can replicate pretty consistently with the FBConnect iPhone SDK, more specifically with the class FBPermissionDialog. The result is that instead of seeing the standard extended permissions dialog, the user is shown this: http://cl.ly/15Lx. The only way around it is for the user to delete the app and re...

FBConnect stream.publish with iphone unknown response?

Hi All, I am using stream.publish to publish some info to a users wall. This all works fine. I am not using FBStreamDialog because i do not want the user to be able to edit the message..... So i have set up my own UI. It all works fine and the stream is published to the users wall, the only issue is that i do not understand the resul...

Authenticating / Authorising FB IFrame Application

Hi all, This is all too confusing for me at the moment. I seem to be going in circles. So here is my situation and my questions. I have an IFrame Application that needs to pretty much just run on the Canvas page. In this App, I wish to access certain user data (which I believe are beyond the normal set of permissions, thus requiring ex...

Fbconnect its not refreshing any views

Hello, I am getting a strange behavior with FbConnect UIView "SessionViewController" can anyone please help me to sort it out? Any help, i am tryig to figure out since 4 days why it not working. Here is my Scenario : I am loading the SessionViewController from a UInavigation Controller. If i do a login SessionViewController it works f...

FBConnect on iPhone with device orientation

Hello, all ! I've got next problem: when shows screen Requesting Permisson he don't rotating when i've rotate my device. All others screen rotating normally. Why ? thanks. ...

Facebook Connect / Graph - problems in Internet Explorer with fb:login dialog (not closing)

Hi there, I am trying to get the facebook connect stuff working on my localhost. In FireFox and Chrome it works perfectly. In Internet Explorer: an error appears in the connect dialog. This is: Invalid Argument The Facebook Connect cross-domain receiver URL (http://static.ak.fbcdn.net/connect/xd_proxy.php#?=&cb=f1e33405f2824e9...

Wrapping aFBConnect in a UIViewController?

Hi I am trying to make FBConnect a bit easier to use different places in my app by wrapping it in a UIViewController that I can instantiate and use. The meat of it looks like this: @implementation ISFacebookViewController @synthesize facebookSession; @synthesize delegate; - (void)viewDidLoad { [super viewDidLoad]; [self.vie...