hey
im unable to use the request method, because i can't figure out what to feed in the "cb" argument.
the documentation is quite vague. what callback function i am supposed to write?
heres a copy of the code i'm running:
deezer.request(deezerToken, { resource: 'user/recommandations/tracks', method: 'GET', cb: 'http://localhost:5000/generate/result', }) .then(result => { console.log(result); res.send(result); }) .catch(err => next(err));
(note that deezerToken is the usertoken of the current user)
thanks in advance!