We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
request
What version are you running? Etc.
Example bundle to validate: https://app-static-prod.posthog.com/static/index-ZPBKKMYQ.js
https://sourcemaps.io/report/1727455456490_https%3A%2F%2Fapp-static-prod.posthog.com%2Fstatic%2Findex-ZPBKKMYQ.js
fetch(url)
request(url)
request(url, { headers: { 'User-Agent': 'foo' } })
Sourcemap should be valid (I can visit both the bundle and the referenced sourceMappingURL in a browser.
I have run these urls using request myself to see that the response code is 403.
Since request is deprecated, maybe use a more modern fetch mechanism? Or just add a user agent header.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Environment
What version are you running? Etc.
Steps to Reproduce
Example bundle to validate: https://app-static-prod.posthog.com/static/index-ZPBKKMYQ.js
https://sourcemaps.io/report/1727455456490_https%3A%2F%2Fapp-static-prod.posthog.com%2Fstatic%2Findex-ZPBKKMYQ.js
fetch(url)
is a 200request(url)
is a 403request(url, { headers: { 'User-Agent': 'foo' } })
is a 200Expected Result
Sourcemap should be valid (I can visit both the bundle and the referenced sourceMappingURL in a browser.
Actual Result
I have run these urls using
request
myself to see that the response code is 403.Since
request
is deprecated, maybe use a more modern fetch mechanism? Or just add a user agent header.The text was updated successfully, but these errors were encountered: