-
Hi! I am working on this exporter and i wanted to create a real time map on Grafana for this data Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Cool to see how other people use the library :) Use One note though: the CLI is not built for recurring data retrieval (yet). It everytime goes through a full login cycle instead of using the stored OAuth refresh tokens & vehicle, so you might run into some rate limiting issues if querying too often. This would not happen if you're able to call the library directly from Python and store the current |
Beta Was this translation helpful? Give feedback.
-
Thank you, i should have read the docs a little bit more! |
Beta Was this translation helpful? Give feedback.
Cool to see how other people use the library :)
Use
status
with the-j
argument instead offingerprint
and you'll get the non-redacted data on stdout: https://bimmer-connected.readthedocs.io/en/latest/cli.html#named-argumentsOne note though: the CLI is not built for recurring data retrieval (yet). It everytime goes through a full login cycle instead of using the stored OAuth refresh tokens & vehicle, so you might run into some rate limiting issues if querying too often.
This would not happen if you're able to call the library directly from Python and store the current
MyBMWAccount
object inside your server. Don't know it this is possible from Go, tough.