You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm hosting linkding behind Traefik. I've confirmed that all API endpoints work with my host/token. The exceptions are POST /api/bookmarks/<id>/archive/ and POST /api/bookmarks/<id>/unarchive/, both of which return 404 responses when I query them:
Archive
Request:
POST /api/bookmarks/1/archive/ HTTP/1.1
Authorization: Token REDACTED
Host: REDACTED
Connection: close
User-Agent: Paw/3.2.2 (Macintosh; OS X/11.2.1) GCDHTTPRequest
Content-Length: 0
Response:
HTTP/1.1 404 Not Found
Content-Length: 77
Content-Type: text/html
X-Frame-Options: SAMEORIGIN
Date: Thu, 18 Feb 2021 01:06:19 GMT
Connection: close
<h1>Not Found</h1><p>The requested resource was not found on this server.</p>
Unarchive
Request:
POST /api/bookmarks/1/unarchive/ HTTP/1.1
Authorization: Token REDACTED
Host: REDACTED
Connection: close
User-Agent: Paw/3.2.2 (Macintosh; OS X/11.2.1) GCDHTTPRequest
Content-Length: 0
Response:
HTTP/1.1 404 Not Found
Content-Length: 77
Content-Type: text/html
X-Frame-Options: SAMEORIGIN
Date: Thu, 18 Feb 2021 01:06:19 GMT
Connection: close
<h1>Not Found</h1><p>The requested resource was not found on this server.</p>
The text was updated successfully, but these errors were encountered:
bachya
changed the title
/archive and /unarchive API routes don't work
/archive and /unarchive API routes return 404
Feb 18, 2021
Version: 1.3.1
Architecture: Docker
I'm hosting linkding behind Traefik. I've confirmed that all API endpoints work with my host/token. The exceptions are
POST /api/bookmarks/<id>/archive/
andPOST /api/bookmarks/<id>/unarchive/
, both of which return404
responses when I query them:Archive
Request:
Response:
Unarchive
Request:
Response:
The text was updated successfully, but these errors were encountered: