I made a Tumblr Oauth API, and implemented an unlink function for the user.
The only problem that Tumblr still remain logged in.
I want to reset the session somehow.
I’ve heard that session IDs are handled somewhere automatically by Cocoa.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Chances are the session id is stored in a cookie. Use
NSHTTPCookieStorageclass to remove it:You can find the cookie for the session id by using
and iterating the
allCookiesarray looking for the matchingdomainandpathvalues.