as i developp some tools for Solid, i need to allow http://localhost:port to read / write to my pod, what write into my /profile/card#me to allow that “Trusted app” something like
n1:mode n1:Append, n1:Read, n1:Write;
n1:origin <http://127.0.0.1:3000>
],
[ n1:mode n1:Append, n1:Read, n1:Write; n1:origin <http://127.0.0.1> ],
[ n1:mode n1:Append, n1:Read, n1:Write; n1:origin <http://127.1.0.1> ],
[
n1:mode n1:Append, n1:Read, n1:Write;
n1:origin <http://localhost:3000>
],
but my profile is public and can be accessed by everyone, i think, that everyone can make a local app on port 3000 and access what he want on my POD.
Am I right ?