You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating a TinderClient instance I got this error thrown at me.
/*
DEBUG:tinder-py:Sending GET request to https://api.gotinder.com/profile
DEBUG:tinder-py:Got response: 200
Traceback (most recent call last):
File "DIR\test.py", line 5, in
client = TinderClient(token, 1, 10)
File "DIR\tinder\tinder.py", line 30, in init
self._self_user = self.get_self_user()
File "DIR\tinder\tinder.py", line 147, in get_self_user
return SelfUser(response, self._http)
File "DIR\tinder\entities\user.py", line 210, in init
super().init(user, http)
File "DIR\tinder\entities\user.py", line 157, in init
self.photos: Tuple[GenericPhoto] = tuple(GenericPhoto(p, http) for p in user["photos"])
File "DIR\tinder\entities\user.py", line 157, in
self.photos: Tuple[GenericPhoto] = tuple(GenericPhoto(p, http) for p in user["photos"])
File "DIR\tinder\entities\photo.py", line 108, in init
self.crop_info: CropInfo = CropInfo(photo["crop_info"])
KeyError: 'crop_info'
*/
I copied the "client = TinderClient("X-Auth-Token")" Statement from your exampke with my personal token.
Thanks in advance!
Tobias
The text was updated successfully, but these errors were encountered:
Hey all!
When creating a TinderClient instance I got this error thrown at me.
/*
DEBUG:tinder-py:Sending GET request to https://api.gotinder.com/profile
DEBUG:tinder-py:Got response: 200
Traceback (most recent call last):
File "DIR\test.py", line 5, in
client = TinderClient(token, 1, 10)
File "DIR\tinder\tinder.py", line 30, in init
self._self_user = self.get_self_user()
File "DIR\tinder\tinder.py", line 147, in get_self_user
return SelfUser(response, self._http)
File "DIR\tinder\entities\user.py", line 210, in init
super().init(user, http)
File "DIR\tinder\entities\user.py", line 157, in init
self.photos: Tuple[GenericPhoto] = tuple(GenericPhoto(p, http) for p in user["photos"])
File "DIR\tinder\entities\user.py", line 157, in
self.photos: Tuple[GenericPhoto] = tuple(GenericPhoto(p, http) for p in user["photos"])
File "DIR\tinder\entities\photo.py", line 108, in init
self.crop_info: CropInfo = CropInfo(photo["crop_info"])
KeyError: 'crop_info'
*/
I copied the "client = TinderClient("X-Auth-Token")" Statement from your exampke with my personal token.
Thanks in advance!
Tobias
The text was updated successfully, but these errors were encountered: