Alert This post is over a year old, some of this information may be out of date.

Calling the GitHub GraphQL API from an app

For a migration from Disqus over to GitHub Discussions, I created a script that processes all comments and replies. One thing I noticed is that I quickly reached the rate limit with my personal access token, which prevents me from using GitHub for a while.

I decided to use a GitHub App to overcome the issue of locking out my account. That way, when the app reaches the rate limit, I can still use GitHub. Although, one thing I just learned was that you need to get the installation token to call the GraphQL API.

In this article, I’ll explain how you can call the GraphQL API from a GitHub App.

App creation

The GitHub Apps page is where you create a new GitHub App.

For calling the GraphQL API, you need to specify the name, and URL, turn off the webhook functionality and provide the required permissions.

Once you have created the app, you can generate a client secret and copy it as you need later.

Generate a new private key and keep the *.pem file safe.

App installation

On the install app page, install the app to all or the repositories of your choice.

Show image Install a GitHub App
Install a GitHub App

Get an access token

As mentioned, to call the GraphQL API, you must get an installation token. The retrieval of the token comes in two steps:

  1. Authenticate the GitHub App to get a JWT token;
  2. Use the JWT token to retrieve the installation ID;
  3. Use the JWT token to retrieve the installation’ access token.

To get the JWT token, you will need the GitHub app ID, client ID, client secret, and private key. To simplify the code, you can use @octokit/auth-app.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { createAppAuth } from "@octokit/auth-app";
import { readFileSync } from "fs";

const auth = createAppAuth({
  appId,
  privateKey: readFileSync(join(__dirname, "../../", privateKeyFile), "utf8"),
  clientId,
  clientSecret
});

// Retrieve JSON Web Token (JWT) to authenticate as app
const appAuthentication = await auth({ type: "app" });

if (!appAuthentication.token) {
  throw new Error("Could not retrieve JWT token");
}

const installationResponse = await fetch("https://api.github.com/app/installations", {
  method: 'GET',
  headers: { Authorization: `Bearer ${appAuthentication.token}` }
});

if (!installationResponse.ok) {
  throw new Error(`HTTP error! status: ${installationResponse.status}`);
}

const installations = await installationResponse.json();
// Get the installation you are interested in (in my case only the first one)
const installationId = installations[0].id;

 // Get installation access token
const installationAuthentication = await auth({
  type: "installation",
  installationId,
});

if (!installationAuthentication.token) {
  throw new Error("Could not retrieve installation token");
}

Once you have the installation’s access token, you can call the GraphQL API.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
const response = await fetch("https://api.github.com/graphql", {
  method: 'POST',
  headers: { Authorization: `Bearer ${installationAuthentication.token}` },
  body: JSON.stringify({
    query: `
      query {
        ...
      }
    `
  }),
}).then((r) => r.json());

Comments

Back to top