in my application i have a webview that loads linkedin auth page for login. when user logs in, cookies saves into the application.

My app has a logout button that is not related to linkedin login. so when user clicks on this button, he logs off from the app. i want that this log off will clear his linkedin cookies also from the app, sothat user will log out completely.

help anybody...

link|improve this question

44% accept rate
feedback

2 Answers

up vote 19 down vote accepted

According to this question, you can go trough each cookie in the "Cookie Jar" and delete them, like so:

NSHTTPCookie *cookie;
NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];
for (cookie in [storage cookies]) {
   [storage deleteCookie:cookie];
}
link|improve this answer
yes it is working, thanks a lot – Vaibhav Saran Dec 18 '10 at 5:52
2  
This method doesn't really work because this will only delete the cookies until you quit the app. But when you reopen it cookies will still be there. – Felipe Brahm May 20 '11 at 22:27
Not working for ios >=4.0 – Ishu Jun 2 '11 at 6:25
@Felipe Found a temporary way,need to delete cookies in app load if you logout last time. – Ishu Jun 2 '11 at 7:38
@Ishu well, yes, that's exactly what I'm doing now, but it doesn't really answer the question on how to REALLY delete cookies forever and not just for the current session – Felipe Brahm Jun 5 '11 at 21:20
show 2 more comments
feedback

You could make a function inside the html of the WebView, that cleans the cookies.

If you need the cleaning to be done only once you could trigger this function with a Titanium event, only when the app starts.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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