I would like to make an app to store messages in the Tangle and retrieve them again.
Do I have to run an Iota node on my PC , or can I connect to a neighbou node to make the app?
with this code I always get the error message that the node is not reachable..
// I'm trying to connect to this node "http://api.testnet.shimmer.network:14265/"
IotaAPI api = new IotaAPI.Builder()
.protocol("http")
.host("api.testnet.shimmer.network")
.port("14265")
.build();
where can I find connection information for existing nodes ?