fetch post社区发帖api报400系列错误
发布于 1 天前 作者 fruit-memory 89 次浏览 来自 问答
fetch(`https://cnodejs.org/api/v1${url}`, {
      method: "POST",
      headers: {
        Accept: "application/json",
        "Content-Type": "application/json",
      },
      body: JSON.stringify(data)
    })
//这里封装成了request
request(`/topics`, {
                accesstoken: AccessToken,
                title: title,
                tab: tab,
                content: content
            }).then(res => {
                console.log(res)
            })
//access token确保没有问题
//点赞,获取已读消息,验证access token都可以,就是发帖不行

求大佬解答

回到顶部