From f82907e8c15bc076697de4fc69b9ea5eef6ae6be Mon Sep 17 00:00:00 2001 From: xiao Date: Tue, 11 Oct 2022 17:06:36 +0800 Subject: [PATCH] ipfs /api/v0/id is post --- examples/routed-echo/bootstrap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/routed-echo/bootstrap.go b/examples/routed-echo/bootstrap.go index ce0f320232..b09228e878 100644 --- a/examples/routed-echo/bootstrap.go +++ b/examples/routed-echo/bootstrap.go @@ -43,7 +43,7 @@ type IdOutput struct { // quick and dirty function to get the local ipfs daemons address for bootstrapping func getLocalPeerInfo() []peer.AddrInfo { - resp, err := http.Get(LOCAL_PEER_ENDPOINT) + resp, err := http.PostForm(LOCAL_PEER_ENDPOINT, nil) if err != nil { log.Fatalln(err) }