0

我使用 Prime31 的 SocialNetworkPlugin for iOs(此处
我想使用 SystemAccount 登录到 Fb(如果存在),但是当我在设备上没有它时 - 我无法登录并获取异常代码 308。
我有其他登录逻辑但我只有当我没有系统帐户时才需要使用它。
我可以在首次登录前检查 Facebook 的系统帐户吗?

upd:如果你能用c#写,请。

4

1 回答 1

0

要在 ios 中检测 Facebook 的系统帐户,您可以使用:

if([SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook]) 
{

//user is already logged in using iOS integrated FB a/c

}
else
{

//user is not logged in

}

根据您给定的 SocialNetworkPlugin Prime[31] 链接,您可以使用 ss:

// Checks to see if the user is using a version of iOS that supports the Facebook composer and if they have an account setup 

public static bool canUserUseFacebookComposer()
于 2015-12-30T10:08:03.563 回答