Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi guys I have tried to follow the steps at https://developers.facebook.com/docs/mobile/ios/build/

But what I need to do is run the facebook login or authenticate when a button is pressed in a different view. So what I have done is the following:

In my ShareViewController.h:

#import "FBConnect.h"
#import "FBRequest.h"

@interface ShareViewController : UIViewController <FBSessionDelegate, FBRequestDelegate, UINavigationControllerDelegate, UIImagePickerControllerDelegate>{
        Facebook *facebook;
}
...
@property (nonatomic, retain) Facebook *facebook;
... 

@end

In the implementation of ShareViewController(.m) I have a function called openFacebook:

- (void)openFacebook{
facebook = [[Facebook alloc] initWithAppId:@"myappid232ddkd" andDelegate:self];

NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
if ([defaults objectForKey:@"FBAccessTokenKey"] 
    && [defaults objectForKey:@"FBExpirationDateKey"]) {
    facebook.accessToken = [defaults objectForKey:@"FBAccessTokenKey"];
    facebook.expirationDate = [defaults objectForKey:@"FBExpirationDateKey"];
}

if (![facebook isSessionValid]) {
    NSArray *permissions = [[NSArray alloc] initWithObjects:
                            @"user_likes", 
                            @"read_stream",
                            //@"user_about_me",
                            //@"email",
                            @"publish_stream",
                            @"publish_actions", 
                            @"offline_access",
                            nil];
    [facebook authorize:permissions];
    [facebook extendAccessTokenIfNeeded];
} 

When I press the button I call openFacebook (the function above) and then it gets a UIImage and sticks it in a me/photos post or me/feed post if there isnt a picture available.

- (IBAction)postToFacebookButton:(id)sender {
    [self openFacebook];
    UIImage *image = combinedImage;

    NSString *strMessage = @"Check out my Photo.  ";
    if([[properties objectForKey:@"current_item"] isEqualToString:@"badge"]){
        [strMessage stringByAppendingString:@"Check out my Photo. Its a "]; 
        [strMessage stringByAppendingString:current_badge_name];
        [strMessage stringByAppendingString:@" that I got on "];
        [strMessage stringByAppendingString:current_badge_created];
    }
    if([[properties objectForKey:@"current_item"] isEqualToString:@"group"]){
        [strMessage stringByAppendingString:@"I just trained with my group at "]; 
        [strMessage stringByAppendingString:current_group_name];
        [strMessage stringByAppendingString:@". I have now attended this group"];
        [strMessage stringByAppendingString:current_group_totalCheckins];
        [strMessage stringByAppendingString:@" times."];
    }

    NSLog(@"%@", [facebook expirationDate]);

    NSMutableDictionary* params = [NSMutableDictionary dictionary];
    [params setObject:strMessage forKey:@"message"];
    if (image) {
        [params setObject:image forKey:@"picture"];
        [facebook requestWithGraphPath:@"me/photos" andParams:params
                         andHttpMethod:@"POST"
                           andDelegate:self];
    } else { 
        [facebook requestWithGraphPath:@"me/feed" andParams:params
                         andHttpMethod:@"POST"
                           andDelegate:self]; }



    NSLog(@"postToFacebook button pressed");
}

Then I have a didLoad function that doesn't seem to get called.

In my AppDelegate I have:

- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url
  sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
    return [[svc facebook] handleOpenURL:url]; 
}

svc is ShareViewController and I am writing #import "ShareViewController.h" at the top of the AppDelegate implementation and I am defining ShareViewController as

svc = [[ShareViewController alloc] init];

when application didFinishLaunchingWithOptions.

I also have put in some other functions available to check the login progress and see what is being called:

- (void)fbDidExtendToken:(NSString*)accessToken
               expiresAt:(NSDate*)expiresAt{
    NSLog(@"access token extended successfully and it expires on %@", expiresAt);
}

- (void)request:(FBRequest *)request didReceiveResponse:(NSURLResponse *)response{
    NSLog(@"Received response from facebook. %@", response);
}

- (void)request:(FBRequest *)request didFailWithError:(NSError *)error{
    NSLog(@"Facebook login failed with an error: %@", error);
}

- (void)requestLoading:(FBRequest *)request{
    NSLog(@"Your facebook request is loading... %@", request);
}

And here is the log showing what has been done.

2012-08-09 19:10:28.842 myapp[591:707] Received response from facebook. <NSHTTPURLResponse: 0x2b3320>
2012-08-09 19:10:28.901 myapp[591:707] Facebook login failed with an error: Error Domain=facebookErrDomain Code=10000 "The operation couldn’t be completed. (facebookErrDomain error 10000.)" UserInfo=0x2bd360 {error=<CFBasicHash 0x2ba000 [0x3e9eb650]>{type = mutable dict, count = 3,
entries =>
    2 : <CFString 0x27edf0 [0x3e9eb650]>{contents = "type"} = <CFString 0x2bce10 [0x3e9eb650]>{contents = "OAuthException"}
    3 : <CFString 0x2bcdb0 [0x3e9eb650]>{contents = "message"} = <CFString 0x2bcd10 [0x3e9eb650]>{contents = "An active access token must be used to query information about the current user."}
    6 : <CFString 0x2bd1c0 [0x3e9eb650]>{contents = "code"} = 2500
}
}

Why doesn't work? Im quite new to this... please go easy on me..

beer for answer (and votes and cookies).

thankyou!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.