ios - 检查我的应用的 iOS 设备 Facebook 权限
<p><p>我想检查是否允许我的应用程序在 iOS 设置中访问 facebook,以便我可以使用不同的标志和 facebook 的 openWithBehaviour 功能进行 facebook 社交登录。
1) </p>
<pre><code>FBSessionLoginBehaviorWithNoFallbackToWebView i.e
[session openWithBehavior:FBSessionLoginBehaviorWithNoFallbackToWebView
completionHandler:^(FBSession *session,
FBSessionState status,
NSError *error) {
// Respond to session state changes,
// ex: updating the view
;
}];
</code></pre>
<p>如果我的应用在 Facebook 和 iOS 设置中未获得许可
2) </p>
<pre><code>FBSessionLoginBehaviorUseSystemAccountIfPresent i.e
[session openWithBehavior:FBSessionLoginBehaviorUseSystemAccountIfPresent
completionHandler:^(FBSession *session,
FBSessionState status,
NSError *error) {
// Respond to session state changes,
// ex: updating the view
;
}];
</code></pre>
<p>那么是否可以在设置中检查我的应用是否被用户拒绝许可?任何帮助,建议都非常感谢。
(我想要这个,因为在 iOS 6 设备上,如果用户在 iOS facebook 设置中拒绝了我的应用程序的权限,那么 facebook 登录回退被中断)。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>为什么在调用电话之前不访问<code></code>?有</p>
<pre><code>@property (readonly, copy) NSArray *permissions;
</code></pre>
<p>和</p>
<pre><code>@property (readonly) FBSessionState state;
</code></pre>
<p>在调用 Facebook SDK 登录之前进行检查。 NSArray <code>permissions</code> 包含 NSStrings,因此您可以轻松检测 session 允许执行的操作。</p></p>
<p style="font-size: 20px;">关于ios - 检查我的应用的 iOS 设备 Facebook 权限,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/20242388/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/20242388/
</a>
</p>
页:
[1]