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.
我正在使用来自GitHub的适用于 iOS 的 Corodova FaceBook 插件。我已经花了很多时间搜索,但我什么也没找到。如何获取并保存用户的访问令牌?稍后我想使用此访问令牌进行数据发布。
FB.getLoginStatus(handleStatusChange); function handleStatusChange(session) { if (session.authResponse) alert(session.authResponse.accessToken); // This will print the token }