我创建了一个新的 GitHub 应用程序,我正在尝试从 Node.js 进行身份验证。我是 GitHub 应用程序的新手,例如,我不知道“installationId”应该是什么。是App ID吗?
我使用私钥成功获取了令牌,但是当我尝试使用 API 时,我从 Node 和 curl 中都收到了错误。
import { createAppAuth } from '@octokit/auth-app';
import { request } from '@octokit/request';
const privateKey = fs.readFileSync(__dirname + 'file.pem');
const auth = createAppAuth({
id: 1,
privateKey,
installationId: 12345,
clientId: 'xxx.xxxxxx',
clientSecret: 'xxxxxx',
});
const appAuthentication = await auth({ type: 'app' });
console.log(`Git repo token: ` + appAuthentication.token);
const result = await request('GET /orgs/:org/repos', {
headers: {
authorization: 'token ' + appAuthentication.token,
},
org: 'orgname',
type: 'public',
});
return res.status(200).json({ message: 'Git result: ' + result });
这是我从上面的节点代码中获取令牌后尝试的 curl 示例。
curl -i -X POST -H "Authorization: Bearer xxxxxxxxxx" -H "Accept: application/vnd.github.machine-man-preview+json" https://api.github.com/app
节点中的结果:“Git 结果:Git repo 错误:HttpError:错误凭据”
结果 curl: { "message": "Integration not found", "documentation_url": " https://developer.github.com/v3 " }