Are all the apis still working?
Was using the login and getProfile() api, but the response json showed me that there is no user and user is not authenticated:
client
.login()
.then((data1) => {
console.log('Data1: ', data1)
client
.getProfile()
.then(data => {
console.log("Data: ", data);
res.json(data)
});
})
And the response was:
Data1: { user: false, authenticated: false, status: 'ok' }
I have the same question!
Do you still have the same problem ? did you also try other methods ?
I didn't try out other methods because without being successfully authorized I can not retrieve personal data and media data for logged in user. That is why I just implemented the requests with node.js and axios myself...
Works for me. Maybe you have 2FA turned on?