gpt4 book ai didi

javascript - 无法发布到 github v3 API

转载 作者:数据小太阳 更新时间:2023-10-29 05:55:50 26 4
gpt4 key购买 nike

我正在尝试通过 javascript 创建公共(public)要点。我没有使用任何身份验证 - 这都是客户端。

var gist = {
"description": "test",
"public": true,
"files": {
"test.txt": {
"content": "contents"
}
}
};

$.post('https://api.github.com/gists', gist, function(data) {
});

以上代码抛出 400:错误请求 - 解析 JSON 时出现问题。但是,我的 JSON 是有效的。有什么想法吗?

最佳答案

啊哈 - 我无法将对象传递给 $.post。它需要先被字符串化:

var gist = {
"description": "test",
"public": true,
"files": {
"test.txt": {
"content": "contents"
}
}
};

$.post('https://api.github.com/gists', JSON.stringify(gist), function(data) {});

关于javascript - 无法发布到 github v3 API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9834393/

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