[
https://issues.apache.org/jira/browse/NIFI-13583?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17872741#comment-17872741
]
Peter Turcsanyi commented on NIFI-13583:
----------------------------------------
The issue was introduced with {{{}com.google.cloud:libraries-bom:26.31.0{}}}.
If I build M2 or M4 with version 26.31.0, both fail, but they properly work
with the previous version of the BOM (26.30.0).
The culprit isĀ {{com.google.auth:google-auth-library-oauth2-http:1.22.0}} which
contains this commit (this is the only feature commit in this release):
https://github.com/googleapis/google-auth-library-java/commit/7e268611d2c2152e84702b1c67ca846902bbe2d5
Next step: investigate how the change causes the new behavior and if it is a
regression or a "new feature" (e.g. a change in credential configuration that
needs to be adjusted on NiFi side).
> Drive processor Credentials issue
> ---------------------------------
>
> Key: NIFI-13583
> URL: https://issues.apache.org/jira/browse/NIFI-13583
> Project: Apache NiFi
> Issue Type: Bug
> Affects Versions: 2.0.0-M4
> Reporter: Julien G.
> Assignee: Peter Turcsanyi
> Priority: Major
> Attachments: EXAMPLE.json, example.webm
>
>
> When using a Drive processor with Default credentials, the processor fine at
> the beginning. But if we start a processor as ConsumePubSub, it won't work
> again with the following error. The only way to make it works again is by
> restarting NiFi. But if a GCP processor like ConsumePubSub is started it
> won't work again.
> {code:java}
> GET
> https://www.googleapis.com/drive/v3/files?includeItemsFromAllDrives=true&q='1yUM0-7Onq2U-3BcWsTAES-2WFzjehg3d'%20in%20parents%20and%20mimeType%20%3D%20'application/vnd.google-apps.folder'&supportsAllDrives=true
> {
> "code": 403,
> "details": [
> {
> "@type": "type.googleapis.com/google.rpc.ErrorInfo",
> "reason": "ACCESS_TOKEN_SCOPE_INSUFFICIENT",
> "domain": "googleapis.com",
> "metadata": {
> "method": "google.apps.drive.v3.DriveFiles.List",
> "service": "drive.googleapis.com"
> }
> }
> ],
> "errors": [
> {
> "domain": "global",
> "message": "Insufficient Permission",
> "reason": "insufficientPermissions"
> }
> ],
> "message": "Request had insufficient authentication scopes.",
> "status": "PERMISSION_DENIED"
> }
> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)