Wahoo#
Register your OAuth2 app here:
The API documentation can be found here:
SOCIALACCOUNT_PROVIDERS = {
'wahoo': {
'SCOPE': ['user_read'],
}
}
- SCOPE:
The default scope is
user_read
which allows you to read profile data. IfSOCIALACCOUNT_QUERY_EMAIL
is set to True theemail
scope is also requested.In order to read or write workout history data you must request additional scopes.
The available scopes are:
user_read
,user_write
,workouts_read
,workouts_write
,offline_data
.