New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

tinder-api-super

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tinder-api-super

An up-to-date API for Tinder.

latest
Source
npmnpm
Version
0.0.2
Version published
Maintainers
1
Created
Source

tinder-super-api

The most complete Tinder API to date (11/2015).

Features

  • Get Tinder User Recommendations
  • Get Messages and new Matches since last Login
  • Get & Set your own Profile
  • Get Moments shared by Matches (deprecated by Tinder)
  • Get User data including photos and real birth date (thanks, Tinder!)
  • Set Location to Coordinates
  • Send Like / Pass / Super Like
  • Send Messages

Getting started

Prerequisites

  • Get your Facebook Auth Token. You might want to use some sort of HTTPS proxy to sniff it as described here. Note: As of 10/2015, you only need your Facebook Auth Token and not your Facebook ID any more.

Do Stuff

const TinderApi = require('tinder-api-super');
const tinderLocale = 'en';
const tinderFbAuthToken = 'YOUR_FB_AUTH_TOKEN';

TinderApi.authorize(tinderFbAuthToken, tinderLocale,
  function() {
    // Auth successful
    TinderApi.getRecs(function(err, recs) {
      if(!err) {
        console.log(recs); // Log some Tinder User Recommendations
      }
    })
  });

To Do

  • [] Actually write some documentation
  • [] Test the functions more thoroughly
  • [] Fetch Facebook Auth Token in a more User friendly manner. Tinderbot (Ruby) does this quite elegantly via a Browser Window.

Note & Disclaimer

Tinder might not be happy about you using this. You might get banned. I can not accept any responsibility for your usage of the API. Also, I haven't tested it very much. :)

Keywords

tinder

FAQs

Package last updated on 27 Nov 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts