Read the statement by Michael Teeuw here.
MMM-Strava only shows achievements, nothing else?
-
@karsten13 and @lavolp3 Thanks both of you for your contributions!!
I know strava is having issues, and is pushing a lot pf services to paid customers only. I dont mind not being able to see any other athletes, I mostly use it for my own tracking, and so I just keep it private. I do know that the random changes in their API caused a lot of trouble for you guys.
So - is there a way to checkout the PR - and use private activities? Can I use something like
git checkout pr 38
and it will be the version @karsten13 PRed? -
you have to use my fork of MMM-Strava.
First goto yourmodules
folder and remove the currentMMM-Strava
subfolder (or rename it).
Then in yourmodules
folder executegit clone -b stats_incl_private_acts https://github.com/khassel/MMM-Strava.git
.
You can use your current config in yourconfig.js
and addshowprivatestats: true
to use this new feature. -
You all are just wizards!!
-
Tried that - authenticated again. I have some public and some private activities now. But now it does not show anything.
Here is my config file:
// Strava { module: "MMM-Strava", position: "bottom_right", config: { client_id: "XXXXXX", client_secret: "XXXXXXXXXXXx", mode: "table", activities: "ride", reloadInterval: 1000*60*30, stats: ["count", "distance", "moving_time", "achievements"], showprivatestats: true, } },
I deleted the old folder too.
-
what means
anything
? Remains in loading state?Here the brackets are missing:
activities: ["ride"],
And now the old wizard is tired and has to go to bed …
-
Yeah that did it! Thanks - again, wizardry appreciated!
-
@nakulbende the worst thing is that they have removed some functions in the api even for paid subscriptions. Club activities endpoint unusable. Current segment leaderboard entries not available to anyone. It’s a mess.
-
Hi all, slightly late to the party, but to add to the comments above…
This module started out using the Get Athlete Stats endpoint in the Strava api to generate the table. This continues to be the case today, but as noted above, this api does not include private activities.
In
chart
mode the module uses the List Athlete Activities. Providing access to private activities is granted when authorising the module, these activities will be included.I’m considering removing the use of the Get Athlete Stats endpoint and aggregating the data from the List Athlete Activities endpoint within the module. This would resolve this problem and allow more activity types to be supported.
In the meantime, the options for displaying private activities are to use
chart
mode (and grant access during authorisation) or use are to use the forked module.