hi all,
I joined a project where jfrog is used as repo manager for hosting artifacts.
When giving a build we got the following error -
[INFO] npm ERR! code E403
[INFO] npm ERR! 403 403 Forbidden - GET https://<<clientDomain>.jfrog.io/artifactory/api/npm/customer-experience-management-npm-virtual/ws/-...
[INFO] npm ERR! 403 In most cases, you or one of your dependencies are requesting
[INFO] npm ERR! 403 a package version that is forbidden by your security policy, or
[INFO] npm ERR! 403 on a server you do not have access to.
[INFO]
[INFO] npm ERR! A complete log of this run can be found in: C:\Users\Admin\AppData\Local\npm-cache\_logs\2024-07-23T12_26_09_146Z-debug-0.log
The ui.frontend module fails at this stage.
thanks,
Rahul
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @gallaghan6,
Could of follow up queries here -
Hope this helps!
This seems to be a permissions issue.
Can you check if the user account which you are using to access the resources in JFrog repository has the required permissions
i'm able to download other assets from jfrog in ui.frontend and its part of the build so any particular reason why this would be an issue?
Hi @gallaghan6
Is GET https://<<clientDomain>.jfrog.io/artifactory/api/npm/customer-experience-management-npm-virtual/ws/-... Public or protected by authorization?
If it is protected by authorization, then can you try to use same credentials for local build as you are using with cloud manager. It might be possible that you might be using user credential but cloud manager/build is using the service credentials.
This is just assumption for "i'm able to download other assets from jfrog in ui.frontend and its part of the build"
Since this is client's own private jfrog repo, it needs to be authenticated. How are you guys handling the authentication ? You can check if you have a .npmrc file which is where generally authentication information is stored. If not, you will probably have to generate one
Check this for more details : https://docs.npmjs.com/cli/v10/configuring-npm/npmrc#auth-related-configuration
There is a npmrc file which is configured and downloading artifacts for other node modules but only this one for web socket is giving an issue.
Are you able to access the path directly on jfrog UI using npmrc's credentials ? If not, it could still be a permission issue. If yes, then try what @Rohan_Garg suggested to upgrade the version.
The permission issue should have been valid for all the other artifacts too.
Hi @gallaghan6,
Could of follow up queries here -
Hope this helps!
For 1 yes, its only the ws module which gives error of 403.
For 2, I am not able to access the page using my domain credentials. The .npmrc file has the credentials.
For 3, the version is present in package-lock.json, I will need to first host it on JFrog first?
"node_modules/ws": {
"version": "8.16.0",
"resolved": "https://clientDomain.jfrog.io/artifactory/api/npm/customer-experience-management-npm-virtual/ws/-/ws-8.16.0.tgz",
"integrity": "sha512-HS0c//T==,
"dev": true,
"engines": {
"node": ">=10.0.0"
},
Hi @gallaghan6, please find the below pointers -
#2 - Try using the credentials from .npmrc file once. If the issue persists then implement #3.
For #3, yes you can commit it in package-lock.json file - even though the file is automatically generated with the build it is intended to be checked into the source repos.
Hope this helps!
deploying the latest version worked by adding change in package-lock.json
thanks @Rohan_Garg
Views
Replies
Total Likes
Hi @gallaghan6
Please check https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/frontend-pipelines-using-p...
@gallaghan6 Did you find the suggestion helpful? Please let us know if you require more information. Otherwise, please mark the answer as correct for posterity. If you've discovered a solution yourself, we would appreciate it if you could share it with the community. Thank you!
Views
Likes
Replies