-
-
Notifications
You must be signed in to change notification settings - Fork 245
Description
On my blog, I have written an article whose German URL contains umlauts: /de/2024/01/zum-wesen-freier-software-wie-dein-handy-zehn-jahre-überdauern-könnte.
In URL encoding, the path looks like this: /de/2024/01/zum-wesen-freier-software-wie-dein-handy-zehn-jahre-%C3%BCberdauern-k%C3%B6nnte.
The API endpoint /api/v0/stats/hits?start=2023-12-31 clearly shows that GoatCounter uses the URL-encoded path internally:
{
"count": 7,
"path_id": 25956711,
"path": "/de/2024/01/zum-wesen-freier-software-wie-dein-handy-zehn-jahre-%C3%BCberdauern-k%C3%B6nnte",
"event": false,
"title": "Zum Wesen freier Software – oder: wie dein Handy zehn Jahre überdauern könnte",
"max": 3,
"stats": [ … ]
}However, when trying to limit the results returned by /api/v0/stats/hits to just that path, the response is empty:
pixelcode@europa:~€ curl "https://user:[email protected]/api/v0/stats/hits?path_by_name=true&include_paths=/de/2024/01/zum-wesen-freier-software-wie-dein-handy-zehn-jahre-%C3%BCberdauern-k%C3%B6nnte&start=2023-12-31"
{
"hits": [],
"total": 0,
"more": false
}For the English version of the path, it works fine:
pixelcode@europa:~€ curl "https://user:[email protected]/api/v0/stats/hits?path_by_name=true&include_paths=/2024/01/on-the-essence-of-free-software-how-your-smartphone-could-outlast-ten-years&start=2023-12-31"
{
"hits": [
{
"count": 8,
"path_id": 25827053,
"path": "/2024/01/on-the-essence-of-free-software-how-your-smartphone-could-outlast-ten-years",
"event": false,
"title": "On the essence of free software – or: How your smartphone could outlast ten years",
"max": 1,
"stats": [ … ]
}Also, I learned from Andrea Bortolotti that you can fetch the view count from https://DOMAIN.goatcounter.com/counter/ + page path + .json. (Is this documented anywhere?) For the path /2024/01/on-the-essence-of-free-software-how-your-smartphone-could-outlast-ten-years, this works fine:
pixelcode@europa:~€ curl "https://forgoodeyesonly-blog.goatcounter.com/counter/2024/01/on-the-essence-of-free-software-how-your-smartphone-could-outlast-ten-years.json"
{
"count": "8",
"count_unique": "8"
}However, for the path with the umlauts, it doesn't work:
pixelcode@europa:~€ curl "https://forgoodeyesonly-blog.goatcounter.com/counter/de/2024/01/zum-wesen-freier-software-wie-dein-handy-zehn-jahre-%C3%BCberdauern-k%C3%B6nnte.json"
{
"count": "0",
"count_unique": "0"
}