defaultnamehere/tinder-detective

Add API endpoint to enable tinder social

Opened this issue · 8 comments

Didn't get around to MITM it as I don't have the app installed but I authorized the tinder facebook oauth portal. If your python app hit the enable social endpoint that would be awesome

POST https://api.gotinder.com/profile

with a body:

{
"squads_discoverable": true
}

Content-Type: Application/json

anyway, since I found it maybe I'll add this method into api.py and send another pull request

I get a response ["401","Unauthorized"]. I sent my facebook_token and facebook_id. Is it because I'm not australian?

repat commented

@jpiabrantes I think you need to send this as the authorized user, you can't just use e.g. postman to send the JSON body to https://api.gotinder.com/profile

What exactly did you try?

For
https://api.gotinder.com/group/friends

i get
{"status":200,"results":[]}

repat commented

That's what I got as well, so I thought it might be because I don't have a properly created account. Do you have one? See #3

Is this enough or would you need a Tinder account created with the app as well and this is just getting around sniffing the apps traffic?

After getting the access token and getting it to work, I finally see
{"status":200,"results":[]}

I created a pull request to enable it: #26