在 iOS 中从 Evernote API 注销

发布于 2025-01-03 21:10:27 字数 52 浏览 2 评论 0原文

iOS 中如何退出 Evernote 帐户?我找不到任何方法。 任何帮助将不胜感激。谢谢!

How can we logout from evernote account in iOS. I was not able to find any method for that.
Any help will be greatly appreciated. Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

溺孤伤于心 2025-01-10 21:10:27

没有显式的注销操作,只需删除您收到的身份验证令牌以及任何缓存的用户名和密码信息即可。

http://discussion.evernote.com/topic/ 19575-如何在objective-c中注销/

There is no explicit logout operation, simply delete the auth token that you have received as well as any cached username and password information.

http://discussion.evernote.com/topic/19575-how-to-logout-in-objective-c/

一笑百媚生 2025-01-10 21:10:27

如果您使用 Evernote SDK for iOS 可以通过以下方式完成注销代码行:

[[EvernoteSession sharedSession] logout];

在幕后调用注销方法只会从商店和钥匙串中清除用户帐户凭据,这实际上会注销用户。

If you're using Evernote SDK for iOS logging out can be accomplished by using the following line of code:

[[EvernoteSession sharedSession] logout];

Behind the scenes calling logout method will just clear user account credentials from the store and keychain which essentially logs the user out.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文