通过Github API

时间:2017-11-02 23:18:23

标签: javascript github-api

我正在尝试使用docs之后的Github API向组织添加成员。我有这个代码请求:

const url = `https://api.github.com/orgs/${org}/memberships/${user}`;
axios.put(url, {
        role: 'member',
}, {
    headers: {
        'Authorization': `token ${accessToken}`
    }
})
.then((response) => {
    console.log('response', response)
})
.catch(error => {
    console.log('error', error)
});

我收到以下错误:

{
    documentation_url: "https://developer.github.com/v3/orgs/members/#add-or-update-organization-membership",
    message: "You must be an admin to add or update an organization membership."
}

我已经检查过我的用户是该组织的所有者。

我在组织中创建了OAuth应用程序,据我所知,我不需要具有限制权限。

任何想法我怎么能得到这里发生的事情?

0 个答案:

没有答案