mirror of
https://github.com/OAuthSwift/OAuthSwift.git
synced 2026-04-26 12:45:52 +03:00
[GH-ISSUE #270] Twitter OAuth on iOS #158
Labels
No labels
bug
cocoapod
duplicate
enhancement
feature-request
help wanted
help wanted
invalid
pull-request
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/OAuthSwift#158
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @alexanderkhitev on GitHub (Aug 19, 2016).
Original GitHub issue: https://github.com/OAuthSwift/OAuthSwift/issues/270
Hello! I need to register on our server via twitter. I made registration with help of OAuth. When we make any request on our server we check our token is active, if our token is expired we make resign on our server and I need to resign in Twitter session, I do logout, but session is active. Android team do it with help
TwitterCore.getInstance().getSessionManager().clearActiveSession();
TwitterCore.getInstance().logOut();
. How can I do it on iOS? I use Swift Please, help me.
@phimage commented on GitHub (Aug 19, 2016):
Maybe this can help https://github.com/OAuthSwift/OAuthSwift/wiki/Logout
Then sometime api provider provide a request to delete the token remotely
@alexanderkhitev commented on GitHub (Aug 20, 2016):
@phimage thank you so much