Vill du chatta med ditt webbanalys-verktyg? Nej, inte jag heller! Men jag kan absolut se nyttan i att ha en språkmodell i kedjan när det ska fixas rapporter.
Vill du chatta med ditt webbanalys-verktyg? Nej, inte jag heller! Men jag kan absolut se nyttan i att ha en språkmodell i kedjan när det ska fixas rapporter.

Taking some notes here for Matomo.
GET with token in URL (please don’t)
I tried passing:
token_auth=...
In the query string.
It works. But:
The token will appear in logs
It may be stored in Power BI’s query history
It can leak in unexpected places
Best practice:
Use a POST request and send token_auth in the body.
Power BI’s Web connector can do POST requests. Use that instead of embedding it in the URL.