Post AZnQAAU5BVJBn6Y3dI by cameron@podcastindex.social
 (DIR) More posts by cameron@podcastindex.social
 (DIR) Post #AZnQ9x2JBSMq5CSC2K by RyanHirsch@podcastindex.social
       2023-09-15T03:16:19Z
       
       0 likes, 0 repeats
       
       @cameron holy cow, this might work. after about 20 minutes I got this going. Just going line by line through your python and converting to RPC calls and nodejs
       
 (DIR) Post #AZnQA5MSEREftzwOY4 by cameron@podcastindex.social
       2023-09-15T04:37:44Z
       
       0 likes, 0 repeats
       
       @RyanHirsch Very cool. Would love to see how it works. All remote calls to the admin http?
       
 (DIR) Post #AZnQA8ElXTrsp1MnTs by RyanHirsch@podcastindex.social
       2023-09-15T14:58:28Z
       
       0 likes, 0 repeats
       
       @cameron yeah remote calls.Now for some reason I don't see that new node in the manage screen. I just see my previous attempts. Is there a limit of 2 nodes? or what needs to happen for a node to pop up on that manage screen?
       
 (DIR) Post #AZnQA8xmq5sf4eQkee by cameron@podcastindex.social
       2023-09-15T15:04:34Z
       
       0 likes, 0 repeats
       
       @RyanHirsch I see some requests without an email field. It can be blank, but there has to be a post variable for 'email'.There's a limit of 5 nodes per IP. I need to lower this, but others are also testing.Old nodes will disappear after 3 days with no contact.
       
 (DIR) Post #AZnQA9kLvWjFVH9XM0 by RyanHirsch@podcastindex.social
       2023-09-15T15:07:51Z
       
       0 likes, 0 repeats
       
       @cameron hmmm, I _think_ I'm sending this through:{  email: 'ryan.hirsch@gmail.com',  version: '0.6p',  peers: 157,  ipfs_id: '12D3KooWQdmfTZWs7MuFYhSRpj7oFDBXQaS2JALkTn5WnoeEQg8h',  ipfs_ver: '0.22.0',  online: true}with the following headers"user-agent": "ptk-ipfs/0.1",accept: "application/json","content-type": "application/json",
       
 (DIR) Post #AZnQAAU5BVJBn6Y3dI by cameron@podcastindex.social
       2023-09-15T15:11:32Z
       
       0 likes, 0 repeats
       
       @RyanHirsch It looks ok. The last good request I see was from "ZpfH"email => ryan.hirsch@gmail.comversion => 0.6pipfs_id => 12D3KooWMBU7pweaSq399dLKp8VWwn5GskngvxhqExoSXvcYZpfHipfs_ver => 0.22.0online => Falsepeers => 0I'll take a look at my code to see why I'm getting a "missing email" error.
       
 (DIR) Post #AZnQABEsNWjs8ERQZM by RyanHirsch@podcastindex.social
       2023-09-15T15:15:20Z
       
       0 likes, 0 repeats
       
       @cameron ZpfH is a ubuntu VM I have running with all your provided code. So at least I can follow a guide and get things working 😆 `Qg8h` is a standalone container that I'm trying to use my own custom code and the HTTP RPC api on
       
 (DIR) Post #AZnQAC01YES8USV53g by cameron@podcastindex.social
       2023-09-15T15:27:04Z
       
       0 likes, 0 repeats
       
       @RyanHirsch Are you sending a "post" (like a form submission) to https://ipfspodcasting.net/request ? I see the web request from various uagents (hello, ptk-ipfs/0.1, & PostmanRuntime/7.32.3), but no data.
       
 (DIR) Post #AZnQACeR7ymMVnPM36 by RyanHirsch@podcastindex.social
       2023-09-15T15:29:22Z
       
       0 likes, 0 repeats
       
       @cameron yes, definitely should be, the "hello" was a request from postman, the other ptk- ones are all from node.
       
 (DIR) Post #AZnQADfBMgyBeOlSqm by cameron@podcastindex.social
       2023-09-15T15:30:52Z
       
       0 likes, 0 repeats
       
       @RyanHirsch Did you try "form-data" instead of "raw"?
       
 (DIR) Post #AZnQAENqgchNsvf8TI by RyanHirsch@podcastindex.social
       2023-09-15T15:36:33Z
       
       0 likes, 0 repeats
       
       @cameron wahoo, that was it!
       
 (DIR) Post #AZnQAFH9N0w0eRXIfY by cameron@podcastindex.social
       2023-09-15T15:37:04Z
       
       0 likes, 0 repeats
       
       @RyanHirsch I see it now.
       
 (DIR) Post #AZnQAG7yCdBZIGFU00 by dave@podcastindex.social
       2023-09-15T16:00:10Z
       
       0 likes, 0 repeats
       
       @cameron @RyanHirsch What voodoo are y'all cooking?
       
 (DIR) Post #AZnQNng0mNw16nd12e by RyanHirsch@podcastindex.social
       2023-09-15T16:02:45Z
       
       0 likes, 0 repeats
       
       @dave @cameron trying an alternative management client for the IPFS podcasting things. Right now what cameron has, expects to be running on the same box as the IPFS server and using the IPFS CLI for management.I'm wanting to run a vanilla IPFS container, and control it via the admin HTTP RPC api. So we're trying that with a node client, then going to try a rust client so that its trivial to spin up if you can run a container.
       
 (DIR) Post #AZnQXOxzVOr5MrcHAm by dave@podcastindex.social
       2023-09-15T16:04:29Z
       
       0 likes, 0 repeats
       
       @RyanHirsch @cameron Oh, that's cool.  So I could run the IPFSpodcasting client locally, but have it control an IPFS daemon running on a cloud hosted VM?
       
 (DIR) Post #AZnQczzlGHS7eq75bk by RyanHirsch@podcastindex.social
       2023-09-15T16:05:30Z
       
       0 likes, 0 repeats
       
       @dave @cameron yes exactly! (as long as you've done the right things to expose the admin api securely to yourself)