Thaw Frost Tower's Entrance
After speaking with Grimy McTrollkins, he tells me that the entrace to the Frost Tower is frozen and nobody can get inside. There's a thermostat visible from the window that is accessible via wifi. By sitting right outside the window where the thermostat is...
I can open up the interface to the USB wifi dongle and scan for any available access points:
1 2 3 4 5 6 7 8 |
|
Found one! Now that I detected it, I can also associate with it and obtain an IP address:
1 2 3 |
|
The network is nice enough to tell me how to configure it. Since I'm joined to the network, I can connect to nidus-setup:8080
with curl as per instructions:
Uh oh. Well before I register I have to figure out exactly what the API wants from me. Thankfully it lists a meaningful API documentation page:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
|
I tried playing with all of the API paths, but as expected, the only one I could access was /api/cooler
because otherwise I would need to register to access it them. Since all I wanted to do was to melt the frost off of the door, I simply checked the temperature...
1 2 3 4 5 6 7 |
|
Then adjusted to be above freezing!
1 2 3 4 5 6 7 8 |
|
The door was officially open. But just for yuks I tried to see if I could register anyway:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
|
Since I needed to access the thermostat to obtain the serial (and I couldn't find it once I got inside anyway), and since it didn't look like there was an easy way to submit my registration via cURL, I had to walk away from this one. Oh well!
At least I got the door open!