Bez popisu

The Coder 6ec707f6c5 Updated před 6 roky
.gitignore 931dd1902a accessToken před 6 roky
.travis.yml eebab0ba32 Adding Travis CI support před 7 roky
LICENSE 99a0c5c1d5 Initial commit před 7 roky
README.md 6ec707f6c5 Updated před 6 roky
index.js e237dd36fd Handle rejections better před 6 roky
package-lock.json 257a85acd4 Add captcha check. Cache user data for an hour. před 6 roky
package.json 257a85acd4 Add captcha check. Cache user data for an hour. před 6 roky

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
    })