Unable to deauthorize Twitter session
I am using ParseUI for Facebook and twitter authentication. SDK version 1.17.1
Below is my scenario
User has logged in via Facebook using an email id xyz
He tries Twitter login that also uses same email id ie xyz
I am checking error of email already used and show error message to user. At this stage try to deauthorize Twitter using below code (in didLoginUser method)
let twitter = PFTwitterUtils.twitter()
twitter?.deauthorizeInBackground()
At this stage ParseUI login view is displayed. If i click Twitter button, i don't get Twitter login page but browser seems to be reusing previously authenticated session.
I want Twitter login page displayed after deauthorization. How do i achieve it?
Thanks
Ashish
ios parse.com
add a comment |
I am using ParseUI for Facebook and twitter authentication. SDK version 1.17.1
Below is my scenario
User has logged in via Facebook using an email id xyz
He tries Twitter login that also uses same email id ie xyz
I am checking error of email already used and show error message to user. At this stage try to deauthorize Twitter using below code (in didLoginUser method)
let twitter = PFTwitterUtils.twitter()
twitter?.deauthorizeInBackground()
At this stage ParseUI login view is displayed. If i click Twitter button, i don't get Twitter login page but browser seems to be reusing previously authenticated session.
I want Twitter login page displayed after deauthorization. How do i achieve it?
Thanks
Ashish
ios parse.com
add a comment |
I am using ParseUI for Facebook and twitter authentication. SDK version 1.17.1
Below is my scenario
User has logged in via Facebook using an email id xyz
He tries Twitter login that also uses same email id ie xyz
I am checking error of email already used and show error message to user. At this stage try to deauthorize Twitter using below code (in didLoginUser method)
let twitter = PFTwitterUtils.twitter()
twitter?.deauthorizeInBackground()
At this stage ParseUI login view is displayed. If i click Twitter button, i don't get Twitter login page but browser seems to be reusing previously authenticated session.
I want Twitter login page displayed after deauthorization. How do i achieve it?
Thanks
Ashish
ios parse.com
I am using ParseUI for Facebook and twitter authentication. SDK version 1.17.1
Below is my scenario
User has logged in via Facebook using an email id xyz
He tries Twitter login that also uses same email id ie xyz
I am checking error of email already used and show error message to user. At this stage try to deauthorize Twitter using below code (in didLoginUser method)
let twitter = PFTwitterUtils.twitter()
twitter?.deauthorizeInBackground()
At this stage ParseUI login view is displayed. If i click Twitter button, i don't get Twitter login page but browser seems to be reusing previously authenticated session.
I want Twitter login page displayed after deauthorization. How do i achieve it?
Thanks
Ashish
ios parse.com
ios parse.com
asked Nov 11 '18 at 10:08
ashishnashishn
5719
5719
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I deleted the cookies for session to achieve this.
Original solution found here by @Will-Von-Ullrich
if let cookies = HTTPCookieStorage.shared.cookies
for cookie in cookies
if cookie.domain.contains("twitter")
HTTPCookieStorage.shared.deleteCookie(cookie)
logger.info("Twitter cookie deleted")
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53247653%2funable-to-deauthorize-twitter-session%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I deleted the cookies for session to achieve this.
Original solution found here by @Will-Von-Ullrich
if let cookies = HTTPCookieStorage.shared.cookies
for cookie in cookies
if cookie.domain.contains("twitter")
HTTPCookieStorage.shared.deleteCookie(cookie)
logger.info("Twitter cookie deleted")
add a comment |
I deleted the cookies for session to achieve this.
Original solution found here by @Will-Von-Ullrich
if let cookies = HTTPCookieStorage.shared.cookies
for cookie in cookies
if cookie.domain.contains("twitter")
HTTPCookieStorage.shared.deleteCookie(cookie)
logger.info("Twitter cookie deleted")
add a comment |
I deleted the cookies for session to achieve this.
Original solution found here by @Will-Von-Ullrich
if let cookies = HTTPCookieStorage.shared.cookies
for cookie in cookies
if cookie.domain.contains("twitter")
HTTPCookieStorage.shared.deleteCookie(cookie)
logger.info("Twitter cookie deleted")
I deleted the cookies for session to achieve this.
Original solution found here by @Will-Von-Ullrich
if let cookies = HTTPCookieStorage.shared.cookies
for cookie in cookies
if cookie.domain.contains("twitter")
HTTPCookieStorage.shared.deleteCookie(cookie)
logger.info("Twitter cookie deleted")
answered Nov 11 '18 at 16:13
ashishnashishn
5719
5719
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53247653%2funable-to-deauthorize-twitter-session%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown