2

有没有办法通过 Intent 打开 Google Authenticator。如果是,是否可以在已填写密钥的情况下打开它,以使其对用户实用?

4

1 回答 1

3

我有一个更通用的代码,因此,您只需将包名称作为参数发送给方法openApp(Context context, String packageName)

public static void openApp(Context context, String packageName) {

    PackageManager manager = context.getPackageManager();
    Intent i = manager.getLaunchIntentForPackage(packageName);
    if (i == null) {
        try {
            context.startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + packageName)));
        } catch (android.content.ActivityNotFoundException anfe) {
            context.startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=" + packageName)));
        }
        return;
    }
    i.addCategory(Intent.CATEGORY_LAUNCHER);
    context.startActivity(i);
}

这样,即使设备上没有您尝试启动的应用程序,用户也会被您的应用程序驱动到 Play 商店并可能下载它。

因此,只需调用openApp(context, "com.google.android.apps.authenticator2");打开 Google Authenticator 应用程序即可。

编辑

您可以使用已设置的所有值调用 Google Authenticator,如下所示:

String uri = "otpauth://totp/whatever:" + email + "?secret=" + yourKey + "&issuer=whatever"
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
startActivity(intent);
于 2016-06-22T17:04:27.110 回答