feat(links): save to wayback archive #139

Open
opened 2025-12-29 13:23:56 +00:00 by chartgerink · 0 comments
Owner

Saving to the wayback archive helps ensure URLs are available for longer than their web presence.

javascript:(function() { window.location = 'https://web.archive.org/save/' + encodeURIComponent(window.location.href); })();

bookmarklet implies it's a mere HTTP request to https://web.archive.org/save/ with the URL to be saved, but there will be 429 requests if not handled properly. This means it will be dependent on the job queue to handle the rates.

Saving to the wayback archive helps ensure URLs are available for longer than their web presence. ``` javascript:(function() { window.location = 'https://web.archive.org/save/' + encodeURIComponent(window.location.href); })(); ``` bookmarklet implies it's a mere HTTP request to `https://web.archive.org/save/` with the URL to be saved, but there will be 429 requests if not handled properly. This means it will be dependent on the job queue to handle the rates.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
researchequals/api#139
No description provided.