Madesan Venkatraman
Madesan Venkatraman

Reputation: 268

How to clear the cookies for foursquare in iphone application?

I am using foursquare in my application but I can't to sign-out from the foursquare in my application.

Upvotes: 0

Views: 121

Answers (2)

Paresh Navadiya
Paresh Navadiya

Reputation: 38249

Use below code to remove foursquare cookie from app

NSHTTPCookie *cookie;
NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];
for (cookie in [storage cookies])
{
   NSString* domainName = [cookie domain];
   NSRange domainRange = [domainName rangeOfString:@"foursquare"];
   if(domainRange.length > 0)
   {
       [storage deleteCookie:cookie];
   }
}

Upvotes: 1

SachinVsSachin
SachinVsSachin

Reputation: 6427

You need to call this wherever you want to just like

   NSHTTPCookieStorage* cookies = [NSHTTPCookieStorage sharedHTTPCookieStorage];
for (NSHTTPCookie* cookie in [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookies]) {

    if ([cookie.name isEqualToString:@"FourSquare"]) {//its temprory name for your understanding
       [cookies deleteCookie:cookie];
    };

}

Upvotes: 0

Related Questions