给定一个 JWT,如何从它创建一个 octokit 客户端?使用 NodeJS。
问问题
52 次
1 回答
0
解决了。https://github.com/octokit/auth-app.js
您实际上并没有使用 JWT,而是可以使用 createAppAuth。如果您需要令牌,它将是 auth.token。
import { Octokit } from '@octokit/core';
import { createAppAuth } from '@octokit/auth-app';
async function getClient() {
const authCreator = createAppAuth({
appId: 123456,
privateKey: "-----BEGIN RSA PRIVATE KEY-----\nBigUglyString\n-----END RSA PRIVATE KEY-----",
clientId: "Iv1.YourMagicNumHere",
clientSecret: "YetAnotherSecretHere",
});
const auth = await authCreator({ type: "app" });
return new Octokit(auth);
}
于 2021-04-19T23:47:10.253 回答