Results 32 comments of Astrid

Played around with this a bit - seems like they're pretty solid at authorization. You can only access your own or your best friends' passport/profile data, and you can only...

Here's a working example of a Python script that hits all of the above APIs and prints information it can access, going through the entire login process automatically given an...

@frozenpandaman Can you explain what that hash your API generates is for? On the app's end it goes directly from the token/request ID/timestamp to the f parameter and doesn't involve...

I'm considering integrating my findings in a Discord bot, but the auth API being like it is makes that impractical, since you'd need each user to log in on their...

Not particularly interested in Splatoon stuff myself as I don't even own the game, I'm more focused on Animal Crossing atm. The goal of my app would be to have...

@dodocodes I found this not too long ago: https://github.com/Kinnay/NintendoClients/blob/master/example_animalcrossing.py Although it requires a hacked Switch to extract the certificates and keys, and there's a risk of getting console-banned. I've not...

> What tokens can be stored to avoid login to Nintendo profile ? @AntoineTurmel You can store the `session_token` for up to 2 years, and reuse it for `/api/login` calls...

> I'm curious if any we're able to access the catalog. Please @ me if you have any ideas on this As far as I can tell, none of that...

Hmm. Adding to this, I often find myself "splitting" systems up into groups. For example, to separate updating and rendering, I will remove all non-updating systems, update the engine, remove...

A lot of the time we need to do more complex truncation logic instead of just cutting off the end, so not sure a generic wrapper would work :/