Closed bergerbyte closed 1 year ago
Can you try this in a python script, just to rule out permission errors on your cred. file.
import lnetatmo
CLIENT_ID = '1234'
CLIENT_SECRET = '123abc'
REFRESH_TOKEN = 'xyz|abc'
authorization = lnetatmo.ClientAuth(
clientId=CLIENT_ID,
clientSecret=CLIENT_SECRET,
refreshToken=REFRESH_TOKEN,
)
Ok, problem found. The package was still on version 2.1. Thanks for the help.
Hello,
Firstly, thank you for your assistance.
I've been facing challenges with the authentication process. Every time I attempt to authenticate, I receive the error "Authentication request rejected." I've set up my configuration using the .netatmo.credentials method.
I've created the Refresh-Token through Netatmo, but on a reload, it's no longer visible. Oddly, when I recreate it, I get the same token value. Is this the intended behavior?
Below is the error I encounter:
Your guidance would be much appreciated.