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
Hello, I'm trying to use Pynder and on /auth, with properly generated fb token, it responds with following error: { "code": 403, "error": "minimum client version enforced#MINIMUM_VERSION_REQUIRED", "error_no": 40304 }
I'm guessing that my headers are outdated for tinder, here they are:
HEADERS = {
"Content-Type": "application/json; charset=utf-8",
"User-Agent": USER_AGENT,
"Host": API_BASE,
"os_version": "1935",
"app-version": "371",
"platform": "android", # XXX with ios we run in an error
"Accept-Encoding": "gzip"
}
is there any fix?
The text was updated successfully, but these errors were encountered:
There is! Simply pass only the XAuthToken; drop everything else. I just hard-coded XAuthToken because I didn't intend on trying to update this repo (not sure if owner is still around). For example: class TinderAPI(object):
Hello, I'm trying to use Pynder and on /auth, with properly generated fb token, it responds with following error:
{ "code": 403, "error": "minimum client version enforced#MINIMUM_VERSION_REQUIRED", "error_no": 40304 }
I'm guessing that my headers are outdated for tinder, here they are:
is there any fix?
The text was updated successfully, but these errors were encountered: