You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently quizzis updated their API. previously it was possible to get the answers by fetching https://quizizz.com/_api/main/v4/students/game/ and accessing data.questions. but it seems that the "questions" from "data" is not available anymore after the Quizizz patch on May 26.
If you want to test for yourself, here's a simple code to access the API: (execute it on your quizziz room dev console)
functiongetRoomHash(){constrootObject=document.querySelector("body > div")if(!rootObject)thrownewError("Could not retrieve root object");constvue=rootObject.__vue_app__.config.globalProperties.$store.getState().gamereturnvue.data.roomHash;}window.location.href=`https://quizizz.com/_api/main/v4/students/game/${getRoomHash()}`
Possibly we wont have any quizziz hack anymore, at least with this method.
The text was updated successfully, but these errors were encountered:
Recently quizzis updated their API. previously it was possible to get the answers by fetching
https://quizizz.com/_api/main/v4/students/game/
and accessingdata.questions
. but it seems that the "questions" from "data" is not available anymore after the Quizizz patch on May 26.If you want to test for yourself, here's a simple code to access the API: (execute it on your quizziz room dev console)
Possibly we wont have any quizziz hack anymore, at least with this method.
The text was updated successfully, but these errors were encountered: