Hi folks, I'm writing a backend for WildApricot OAuth2, when you complete auth it sends back an auth token and not much else, which you can then use to hit up an API endpoint /Contacts/me, which returns what you'd expect, first name, last name, etc. I can call self.get_json() in get_user_details to grab data from this. But there's also some extra_data I'd like to save from this API call. Is there any way to do this?
Right now I'm returning {} in get_user_details, then setting user.first_name etc in extra_data, which probably isn't the best way.
Being stupid, answer is to use EXTRA_DATA in the class :)