2014-01-28 81 views
0

我有一個iOS應用程序和用戶通過Facebook或Twitter登錄。我使用social.framework來驗證用戶身份,我需要將他們的訪問令牌發送到服務器來驗證他們的憑據。如何從ACAccount對象獲取訪問令牌Social.framework

如果[NCAccount憑證]始終對蘋果文檔返回空值,如何獲取訪問令牌?

https://developer.apple.com/library/ios/documentation/Accounts/Reference/ACAccountClassRef/Reference/Reference.html#//apple_ref/doc/uid/TP40011019

回答

-1

我使用這個庫嘰嘰喳喳 https://github.com/kbegeman/Twitter-Reverse-Auth

而且facebook.framework對於Facebook用下面的函數

[FBSession openActiveSessionWithReadPermissions:permissions 
              allowLoginUI:YES 
            completionHandler:^(FBSession *session, FBSessionState state, NSError *error) {}]; 
相關問題