Lewdninja / lamd

LiveMe Account Monitor Daemon
2 stars 1 forks source link

Error #1

Open Xqqz opened 6 years ago

Xqqz commented 6 years ago

Using Windows 7-Ultimate 64-bit

getting this error::: ......................................................................................................................................................... LiveMe Account Monitor Daemon (LAMD) https://thecoderstoolbox.com/lamd

 Scan Interval:      15 minutes

 Download Path:      /home/user/Downloads
 Download Template:  %%broadcaster%% %%replayid%% %%replaydateus%%

 Download Engine:    Stream Downloader
 Download Chunks:    25 at a time

2 accounts loaded in. (node:34572) UnhandledPromiseRejectionWarning: Unhandled promise rejection (reje ction id: 2): Error: 400 Message: lack params: token (node:34572) [DEP0018] DeprecationWarning: Unhandled promise rejections are depr ecated. In the future, promise rejections that are not handled will terminate th e Node.js process with a non-zero exit code.


Any solution ?

T.I.A.

TuxNuX commented 6 years ago

I have the same error with the linux version I think it takes an update with the new API screenshot_20180603_123709

same problem with the login also with "Manually Add Replay" screenshot_20180605_125624

TuxNuX commented 6 years ago

oops i just saw updated with account login I will test now :)

Xqqz commented 6 years ago

@TuxNuX , yeah it needs some type of "authentication" process, like LMPT had to have done.

TuxNuX commented 6 years ago

I created file account.json with

{
     "email": "email",
     "password": "password"
}

but still have bug

Xqqz commented 6 years ago

maybe more like:

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

.... but need the GUI to INPUT your email and password to a setting(saved) file (?)

@TuxNuX