Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用新的 iOS SDK 3.0,如何扩展访问令牌?这还有必要吗?
Facebook SDK 自己处理它。
您可以随时访问它,如下所示:
NSString *accessToken = [FBSession activeSession].accessToken;
如果没有设置令牌,这将返回 accessToken 或 nil。您甚至可以在会话上定义令牌缓存规则集。享受。
我认为当您使用 FBSession 时,它会在内部处理它。