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?
...
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...
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?
...
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...
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:(...
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...
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 ?
...
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....
Hi,
does fbconnect works with iphone OS 2.2.1 ?
...
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...
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?
...
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...
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
...
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...
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...
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...
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...
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.
...
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...
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...