Co-authored-by: Isaac Brown <101839405+isaacmbrown@users.noreply.github.com> Co-authored-by: isaacmbrown <isaacmbrown@github.com>
3.6 KiB
title, intro, versions, topics, shortTitle
| title | intro | versions | topics | shortTitle | |||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Authenticating as a GitHub App | You can authenticate as a {% data variables.product.prodname_github_app %} in order to generate an installation access token or manage your app. |
|
|
Authenticate as an app |
About authentication as a {% data variables.product.prodname_github_app %}
You must authenticate as a {% data variables.product.prodname_github_app %} in order to make REST API requests as the application. For example, if you want to use the API to generate an installation access token for accessing organization{% ifversion enterprise-installed-apps %} or enterprise{% endif %} resources, list installations across accounts for your app, or suspend an app installation, you must authenticate as an app.
If a REST API endpoint requires you to authenticate as an app, the documentation for that endpoint will indicate that you must use a JWT to access the endpoint. The GraphQL API does not support any queries or mutations that require you to authenticate with a JWT.
Using a JSON Web Token (JWT) to authenticate as a {% data variables.product.prodname_github_app %}
-
Generate a JSON Web Token (JWT) for your app. For more information, see AUTOTITLE.
-
Include the JWT in the
Authorizationheader of your request. In the following example, replaceYOUR_JWTwith your JWT.curl --request GET \ --url "{% data variables.product.rest_url %}/app/installations" \ --header "Accept: application/vnd.github+json" \ --header "Authorization: Bearer YOUR_JWT" \ --header "X-GitHub-Api-Version: {{ allVersions[currentVersion].latestApiVersion }}"
Using the Octokit.js SDK to authenticate as a {% data variables.product.prodname_github_app %}
You can use {% data variables.product.company_short %}'s Octokit.js SDK to authenticate as a {% data variables.product.prodname_github_app %}. One advantage of using the SDK to authenticate is that you do not need to generate a JSON web token (JWT) yourself. Additionally, the SDK will take care of regenerating the JWT when it expires.
Note
You must install and import
octokitin order to use the Octokit.js library. The following example uses import statements in accordance with ES6. For more information about different installation and import methods, see Usage in the octokit/octokit repository.
-
Get the ID of your app. You can find your app's ID on the settings page for your {% data variables.product.prodname_github_app %}. For more information about navigating to the settings page for your {% data variables.product.prodname_github_app %}, see AUTOTITLE.
-
Generate a private key. For more information, see AUTOTITLE.
-
Import
Appfromoctokit.import { App } from "octokit"; -
Create a new instance of
App. In the following example, replaceAPP_IDwith a reference to your app's ID. ReplacePRIVATE_KEYwith a reference to the value of your app's private key.const app = new App({ appId: APP_ID, privateKey: PRIVATE_KEY, }); -
Use an
octokitmethod to make a request to a REST API endpoint that requires a JWT. For example:await app.octokit.request("/app")