Github API v3,发布问题/身份验证

时间:2020-01-26 14:41:38

标签: api authentication github axios github-api-v3

我正在使用Github API v3制作看板的项目。 我对get方法没有问题,但是在post方法方面,我得到404响应,从我在文档中阅读的内容来看,这似乎是身份验证错误。

我正在使用个人令牌进行身份验证,并且已经通过邮递员成功发布了,但是当我尝试通过自己的应用程序发布时,我得到了错误。

如果有人感兴趣,请链接到项目:https://github.com/ericyounger/Kanban-Electron

下面是用于发布到github的代码。

下面的代码可能有问题吗?还是与令牌相关的设置?

postIssue(json){

        let packed = this.packPost(json);
        return Axios.post(`https://api.github.com/repos/${this.user}/${this.repo}/issues`, packed);
    }

    packPost(json) {
        return {
            method: "POST",
            headers: {
                "Authorization": `token ${this.tokenAuth}`,
                "Content-Type": "application/json"
            },
            body: JSON.stringify({title: json.title})
        };
    }

这是我收到的:

{message: "Not Found", documentation_url: "https://developer.github.com/v3/issues/#create-an-issue"}
message: "Not Found"
documentation_url: "https://developer.github.com/v3/issues/#create-an-issue"

Console log error message

2 个答案:

答案 0 :(得分:0)

没有看到任何详细的日志,我的第一个尝试是将body设置为不发送正文的字符串表示形式

body: {title: json.title}

答案 1 :(得分:0)

这成功了:)

    postIssue(json){
        const headers = {
            'Content-Type': 'application/json',
            'Accept': 'application/vnd.github.v3.raw',
            "Authorization": `token ${this.tokenAuth}`,
        };

        return Axios.post(`https://api.github.com/repos/${this.user}/${this.repo}/issues`, json , {headers: headers});
    }