Closed QtpyeRose closed 3 years ago
Take a look at this example, I think it has what you want,
Some Kik accounts are known to be glitched and not have the account creation time in the xiphias response. It's unknown why this happens, but it only typically happens for older accounts. An example on Kik would be @CinnamonHollow
my code was actually wrong. I was forgetting to get the user object out the array it provided (I thought it was just a direct user responce)
in
xiphias.py
underclass UsersResponseUser:
in the descriptive comment of what the function does it statesbut when
client.xiphias_get_users_by_alias(chat_message.alias_sender).creation_date_nanos
is called it throws the error'str' object has no attribute 'creation_date_nanos'
, so it appears to not have been created. either a piece of code is missing or the comment describing what it does is wrong (or i messed up my code in some way)