idiidk / kahoot-tools

A website for interacting with kahoot games.
https://omegaboot.com
68 stars 40 forks source link

Kahoot UUID from GamePIN... easy way? #23

Closed ghost closed 5 years ago

ghost commented 5 years ago

Hello! I am developing a tool for Android that displays correct answers for Kahoot quizzes in form of ApplicationOverlay (like Facebook Messenger overlay) over Kahoot App activities. Is there any easy way of extracting KahootID from GamePIN? Prescribing GUID from teachers URL isn't always that easy, especially if teacher turns on fullscreen mode.

From MITM analysis, I figured that I needed to call this endpoint: https://create.kahoot.it/rest/kahoots/[INSERT UUID/GUID here] Then I can deserialize response to nice object. But obviously I cannot insert GamePIN (wchich is int) as Guid.

This is last problem that I need to solve for my project. Thanks for help, I know that my issue isn't issue of Kahoot-Tools but I couldn't find any alive Kahoot repo or anyone who codes Kahoot "hacks". And sorry for my bad English ;)

idiidk commented 5 years ago

I faced that problem aswell. There is no way to get the guid 100% of the time. The only way I found was to call the search rest API and search for the name of the kahoot. From that request you can het the uuid

Adrianq88 commented 1 year ago

I faced that problem aswell. There is no way to get the guid 100% of the time. The only way I found was to call the search rest API and search for the name of the kahoot. From that request you can het the uuid

Hi can you please tell me more about how to get quiz name from API and then quiz uuid?