gpt4 book ai didi

firebase - 访问 HackerNews API

转载 作者:行者123 更新时间:2023-12-01 21:11:48 29 4
gpt4 key购买 nike

我正在尝试访问 HackerNews API 来练习围棋。

每当我去我的本地主机尝试查看 Firebase 数据库(存储数据的地方)的输出时,我都会遇到一个 Google 帐户身份验证表单。

如有任何帮助,我们将不胜感激。在我的终端中,我使用 curl 检查我是否从服务器收到响应。我收到了内容为 200 OK 的响应。

我想我可能缺少一个 Firebase 客户端库,但我不确定现在是否是这个问题。

package main

import (
"fmt"
"io/ioutil"
"log"
"net/http"
)

func handler(w http.ResponseWriter, r *http.Request) {
response, err := http.Get("https://hacker-news.firebaseio.com/v0/item/8863.json")
if err != nil {
fmt.Printf("The http request failed with the error %s\n", err)
} else {
data, _ := ioutil.ReadAll(response.Body)
fmt.Fprintf(w, string(data))
}
}
func main() {
fmt.Println("Starting the applicaiton")
http.HandleFunc("/", handler)
log.Fatal(http.ListenAndServe(":8080", nil))

}

最佳答案

你不是想将 .json 添加到 URL(通过 https://github.com/HackerNews/API )吗?

例如 https://hacker-news.firebaseio.com/v0/item/8863.json

关于firebase - 访问 HackerNews API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59738832/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com