You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
two days ago, netatmo will turn off the old authorization method - which it warned about
i made small changes following [https://github.com/philippelt/netatmo-api-python] in the code and it's ok
"BREAKING CHANGE: Netatmo seems no longer (july 2023) to allow grant_type "password", even for an app credentials that belong to the same account than the home. They have added the capability of creating access_token/refresh_token couple from the dev page (the location where app are created). As a consequence, the username/password credentials can no longer be used and you must replace them with a new parameter REFRESH_TOKEN that you will get from the web interface. "
Hi
two days ago, netatmo will turn off the old authorization method - which it warned about
i made small changes following [https://github.com/philippelt/netatmo-api-python] in the code and it's ok
"BREAKING CHANGE: Netatmo seems no longer (july 2023) to allow grant_type "password", even for an app credentials that belong to the same account than the home. They have added the capability of creating access_token/refresh_token couple from the dev page (the location where app are created). As a consequence, the username/password credentials can no longer be used and you must replace them with a new parameter REFRESH_TOKEN that you will get from the web interface. "
Below is the concept - not the complete code
if [ "${list_devices}" == "1" ] ; then
if hash jq >/dev/null 2>&1 ; then
listDevices "${id}" "${sec}" "${refresh}" | jq '.'
else
listDevices "${id}" "${sec}" "${refresh}"
fi
exit 0
fi
The text was updated successfully, but these errors were encountered: