fbessez / Tinder

Official November 2019 Documentation for Tinder's API (wrapper included)
MIT License
841 stars 198 forks source link

Updating age filter, with https://api.gotinder.com/v2/profile or https://api.gotinder.com/profile? #129

Closed panderlad closed 3 years ago

panderlad commented 3 years ago

I try to update the age filter, and it works only with first version of Tinder API, this link, https://api.gotinder.com/profile, if i use version2, (https://api.gotinder.com/v2/profile), i get 200 status response, but the filter it's not change in the profile, so i'm wondering if using the first version of API is somehow prejudicial on the tinder profile used or not,

and if there is a way to make it works on V2.

thanks

This is the code i send { "age_filter_min": 23, "age_filter_max": 23 }

Binj0 commented 3 years ago

Maybe try:

{ "user": { "age_filter_min": 23, "age_filter_max": 23 } }

panderlad commented 3 years ago

thanks