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.

I have code for logout for facebook twitter and linkedin

facebook

[facebookObj logout:self];

Twitter

[twitterObj endUserSession];

LinkedIn

static NSString *const kOAuthInvalidateTokenURL    = @"https://api.linkedin.com/uas/oauth/invalidateToken";

NSURL* url = [NSURL URLWithString:kOAuthInvalidateTokenURL];
return [self sendAPIRequestWithURL:url HTTPMethod:@"GET" body:nil];

but nothing is logout
I got error for facebook i.e

2011-04-11 19:18:03.820 myApp[2544:207] fbDidLogout
2011-04-11 19:18:07.303 myApp[2544:207] Request 01E3CA03-1671-49B4-95A7-E87081F68333 failed with error: Error Domain=HTTP Code=401 "The operation couldn’t be completed. (HTTP error 401.)"

Please guide me how we logout

Amit Battan

share|improve this question
any idea regards logout – Amit Battan Apr 12 '11 at 11:50

1 Answer

You need to send a request with the token and this url. You wil get status code 200.

share|improve this answer
I want logout from all of three... for which you are suggesting – Amit Battan Apr 14 '11 at 7:47

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.