Iphone - Twitter 使用 MGTwitterEngine 注销

发布于 2024-10-14 10:41:07 字数 75 浏览 6 评论 0原文

我正在使用 MGTwitterEngine 在 iPhone 应用程序上进行 Twitter 集成。

如何注销当前用户?

I'm working on twitter integration on an iPhone application using MGTwitterEngine.

How to log out the current user?

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

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

发布评论

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

评论(2

謸气贵蔟 2024-10-21 10:41:07

的对象

  • 对于注销,请使用以下行,其中 self._engine 是 SA_OAuthTwitterEngine

    (void) ourLogoutMethod
    {
    [self._engine setClearsCookies:YES];
    [self._engineclearAccessToken];

    NSHTTPCookie *cookie;
    NSHTTPCookieStorage *存储= [NSHTTPCookieStorage共享HTTPCookieStorage];
    for ([存储cookie]中的cookie)
    {
        NSString* 域名 = [cookie 域];
        NSRange domainRange = [域名 rangeOfString:@"twitter"];
        if(domainRange.length > 0)
        {
            [存储deleteCookie:cookie];
        }
     }
    

}

For Logout use these lines where self._engine is the object of SA_OAuthTwitterEngine

  • (void) ourLogoutMethod
    {
    [self._engine setClearsCookies:YES];
    [self._engine clearAccessToken];

    NSHTTPCookie *cookie;
    NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];
    for (cookie in [storage cookies])
    {
        NSString* domainName = [cookie domain];
        NSRange domainRange = [domainName rangeOfString:@"twitter"];
        if(domainRange.length > 0)
        {
            [storage deleteCookie:cookie];
        }
     }
    

}

黎歌 2024-10-21 10:41:07

您需要访问
- (void)setUsername:(NSString *)newUsername 密码:(NSString *)newPassword
GMTwitterEngine 类中的方法。

You need to access the
- (void)setUsername:(NSString *)newUsername password:(NSString *)newPassword
method from the GMTwitterEngine class.

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