I am trying to establish a connection between React and SCORM. My SCORM package is hosted on the AWS platform, and I am using react-scorm-container to connect by providing the bridge URL and manifest URL. However, I keep getting an “access denied” error. I’m stuck and unable to make any progress. I need help with this issue. Is there another way to establish a connection between SCORM and React?
<SCORMContainer
bridgeUrl={`https://610867754118-xce-content.s3.amazonaws.com`}
manifestUrl={`https://610867754118-xce-content.s3.amazonaws.com/engineering-pathway/content/SCORM_package/RuntimeBasicCalls_SCORM20043rdEdition/imsmanifest.xml`}
initialState={{
studentName: "Praful Deoghare",
}}
width={"calc(100vw - 400px)"}
height={"calc(100vh - 150px)"}
commitCallback={function (state: LMSState, eventList: SCORMEvent[]): void {
console.log(state, eventList);
}}
/>
i have tried changing manifest url and bridge url but still not working.
Praful Deoghare is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.