Нема описа

The Coder 6ec707f6c5 Updated пре 6 година
.gitignore 931dd1902a accessToken пре 6 година
.travis.yml eebab0ba32 Adding Travis CI support пре 7 година
LICENSE 99a0c5c1d5 Initial commit пре 7 година
README.md 6ec707f6c5 Updated пре 6 година
index.js e237dd36fd Handle rejections better пре 6 година
package-lock.json 257a85acd4 Add captcha check. Cache user data for an hour. пре 6 година
package.json 257a85acd4 Add captcha check. Cache user data for an hour. пре 6 година

README.md

LiveMe-API module for NodeJS

Mirrored from: https://github.com/Lewdninja/liveme-api

Contributors:

Example:

const LivemeAPI = require('liveme-api')
const Liveme = new LivemeAPI({
    email: 'user@example.com',
    password: 'password'
})

Liveme.getUserInfo('123456790123456')
    .then(user => {
        // user.user_info contains details on the user queried
    })
    .catch(err => {
        // Unable to locate user account
    })