Linking is a tool to gather and save resources from any website and save them to a global collection you can easily access from anywhere, anytime.
- Add resources from any website.
- View resources in a list.
- Blazing fast search.
- See a preview of the resource.
- Integrate with
curland Apple Shortcuts clients. - Social login with Google and GitHub.
To add a resource with Apple Shortcuts, you can build a shortcut that makes a POST request to the following endpoint:
https://linking.acbutler.dev/api/resources/apple-shortcuts
with the following body:
{
"resourceUrl": "https://example.com/some-resource",
"title": "Example resource", // optional
"sourceUrl": "https://example.com/some-source", // optional
"tags": "#tag1 #tag2", // optional
"key": "key",
"owner": "owner"
}You get the key and owner from the website,
or by cUrling the following endpoint:
https://linkIng.acbutler.dev/api/users/get-key/
with the following headers:
{
"Content-Type": "application/json",
"Authorization": "Bearer <token>"
}Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.