Share by link location

This is a slightly strange question but does anyone know where in the mysql database I could find a list of shared file links. What I’m looking for is a list of file links that have been shared by users.
Thanks.

Answered my own question. The tokens are found in the mysql nextcloud database and you can get them with:
use nextcloud;
select token from oc_share where share_type=3;

1 Like