-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: added 'enable_granular_consent' parameter #2582
base: main
Are you sure you want to change the base?
Conversation
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
🤖 I detect that the PR title and the commit message differ and there's only one commit. To use the PR title for the commit history, you can use Github's automerge feature with squashing, or use -- conventional-commit-lint bot |
* origin/main: Added 'enable_granular_consent' parameter
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems good but, I can't find any documentation on the Google auth side regarding the enable_granular_consent
parameter. Can you show me where you see this documented, so I can be sure it's correct?
## [2.15.4](https://github.com/googleapis/google-api-php-client/compare/v2.15.3...v2.15.4) (2024-03-22) | ||
|
||
### Features | ||
|
||
* Add parameter `enable_granular_consent` | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changelog gets updated automatically through our release-please bot. We can revert this change.
## [2.15.4](https://github.com/googleapis/google-api-php-client/compare/v2.15.3...v2.15.4) (2024-03-22) | |
### Features | |
* Add parameter `enable_granular_consent` |
@@ -404,11 +406,17 @@ public function createAuthUrl($scope = null, array $queryParams = []) | |||
? null | |||
: var_export($this->config['include_granted_scopes'], true); | |||
|
|||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here's one link to documentation regarding the |
I have found that in SDK missed parameter
enable_granular_consent
. I've added this parameters to Client's configuration. Please review.