当前位置: 首页>>代码示例>>Java>>正文


Java Settings.getPlatformCompatibilityEnabled方法代码示例

本文整理汇总了Java中com.facebook.Settings.getPlatformCompatibilityEnabled方法的典型用法代码示例。如果您正苦于以下问题:Java Settings.getPlatformCompatibilityEnabled方法的具体用法?Java Settings.getPlatformCompatibilityEnabled怎么用?Java Settings.getPlatformCompatibilityEnabled使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.facebook.Settings的用法示例。


在下文中一共展示了Settings.getPlatformCompatibilityEnabled方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createProxyAuthIntent

import com.facebook.Settings; //导入方法依赖的package包/类
public static Intent createProxyAuthIntent(Context context, String applicationId, List<String> permissions,
        String e2e, boolean isRerequest, SessionDefaultAudience defaultAudience) {
    for (NativeAppInfo appInfo : facebookAppInfoList) {
        Intent intent = new Intent()
                .setClassName(appInfo.getPackage(), FACEBOOK_PROXY_AUTH_ACTIVITY)
                .putExtra(FACEBOOK_PROXY_AUTH_APP_ID_KEY, applicationId);

        if (!Utility.isNullOrEmpty(permissions)) {
            intent.putExtra(FACEBOOK_PROXY_AUTH_PERMISSIONS_KEY, TextUtils.join(",", permissions));
        }
        if (!Utility.isNullOrEmpty(e2e)) {
            intent.putExtra(FACEBOOK_PROXY_AUTH_E2E_KEY, e2e);
        }

        intent.putExtra(ServerProtocol.DIALOG_PARAM_RESPONSE_TYPE, ServerProtocol.DIALOG_RESPONSE_TYPE_TOKEN);
        intent.putExtra(ServerProtocol.DIALOG_PARAM_RETURN_SCOPES, ServerProtocol.DIALOG_RETURN_SCOPES_TRUE);
        intent.putExtra(ServerProtocol.DIALOG_PARAM_DEFAULT_AUDIENCE, defaultAudience.getNativeProtocolAudience());

        if (!Settings.getPlatformCompatibilityEnabled()) {
            // Override the API Version for Auth
            intent.putExtra(ServerProtocol.DIALOG_PARAM_LEGACY_OVERRIDE, ServerProtocol.GRAPH_API_VERSION);

            // Only set the rerequest auth type for non legacy requests
            if (isRerequest) {
                intent.putExtra(ServerProtocol.DIALOG_PARAM_AUTH_TYPE, ServerProtocol.DIALOG_REREQUEST_AUTH_TYPE);
            }
        }

        intent = validateActivityIntent(context, intent, appInfo);

        if (intent != null) {
            return intent;
        }
    }
    return null;
}
 
开发者ID:dannegm,项目名称:BrillaMXAndroid,代码行数:37,代码来源:NativeProtocol.java

示例2: getAPIVersion

import com.facebook.Settings; //导入方法依赖的package包/类
public static final String getAPIVersion() {
    if (Settings.getPlatformCompatibilityEnabled()) {
        return LEGACY_API_VERSION;
    }
    return GRAPH_API_VERSION;
}
 
开发者ID:MobileDev418,项目名称:AndroidBackendlessChat,代码行数:7,代码来源:ServerProtocol.java


注:本文中的com.facebook.Settings.getPlatformCompatibilityEnabled方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。