Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Attachment actions
Unintended behavior
View staffing
Description
If you have an issue with the Google Analytics UI or product, use the “Send Feedback” action under the ⋮ menu on
The best place to ask questions about using and developing with Google Analytics APIs, libraries, and SDKs is on Stack Overflow. Make sure to use the “google-analytics” or “google-analytics-api” tags.
This is the place to report bugs or feature requests with the Google Analytics API. If that does not describe your use case, please review the other resources available here:
------------ ✂ ------------
Summary: I tried to call analytics.management.profileFilterLinks.list api using nodejs client and google script code, I am facing 500 internal error on apis side.
I have attched the graph of 500 error code from
Expected Behavior:
analytics.management.profileFilterLinks.list should give 200 response
Steps to Reproduce:
call analytics.management.profileFilterLinks.list api on batch or using promoise all
let batchCall = [];
// push multple call to batchCall array
batchCall.push(analytics.management.profileFilterLinks.list({
'auth': auth,
'accountId': accountId,
'webPropertyId': views.propertyId,
'profileId': views.viewId
}));
batchCall.push(analytics.management.profileFilterLinks.list({
'auth': auth,
'accountId': accountId,
'webPropertyId': views.propertyId,
'profileId': views.viewId
}));
batchCall.push(analytics.management.profileFilterLinks.list({
'auth': auth,
'accountId': accountId,
'webPropertyId': views.propertyId,
'profileId': views.viewId
}));
batchCall.push(analytics.management.profileFilterLinks.list({
'auth': auth,
'accountId': accountId,
'webPropertyId': views.propertyId,
'profileId': views.viewId
}));
profileFilterLinks = await Promise.all(batchCall).catch(error => console.log(error.message));