有没有办法通过Google API检测撤销的权限?

时间:2016-06-28 18:27:12

标签: google-account

我们正试图找到一种方法来检测通过Google API撤销的权限,而无需不断轮询提供商以获取状态更新。谷歌是否有任何类型的通知系统(webhook等)?

most recent post我发现这个问题是在2年多前了。

1 个答案:

答案 0 :(得分:0)

查看此处并搜索“检查权限”

Android Permissions

// Here, thisActivity is the current activity
if (ContextCompat.checkSelfPermission(thisActivity,
            Manifest.permission.READ_CONTACTS)
    != PackageManager.PERMISSION_GRANTED) {

// Should we show an explanation?
if (ActivityCompat.shouldShowRequestPermissionRationale(thisActivity,
        Manifest.permission.READ_CONTACTS)) {

    // Show an expanation to the user *asynchronously* -- don't block
    // this thread waiting for the user's response! After the user
    // sees the explanation, try again to request the permission.

} else {

    // No explanation needed, we can request the permission.

    ActivityCompat.requestPermissions(thisActivity,
            new String[]{Manifest.permission.READ_CONTACTS},
            MY_PERMISSIONS_REQUEST_READ_CONTACTS);

    // MY_PERMISSIONS_REQUEST_READ_CONTACTS is an
    // app-defined int constant. The callback method gets the
    // result of the request.
}
}