You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Creates an installation access token](https://docs.github.com/en/rest/reference/apps#create-an-installation-access-token-for-an-app) that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire 1 hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token.
15
20
@@ -60,8 +65,8 @@ wget -O ghtoken \
60
65
### curl
61
66
62
67
```sh
63
-
# Download a file, name it ghtoken following [L]ocation redirects, and
64
-
# automatically [C]ontinuing (resuming) a previous file transfer then
68
+
# Download a file, name it ghtoken following [L]ocation redirects, and
69
+
# automatically [C]ontinuing (resuming) a previous file transfer then
65
70
# do a checksum
66
71
curl -o ghtoken \
67
72
-O -L -C - \
@@ -409,7 +414,7 @@ jobs:
409
414
410
415
## Troubleshoot
411
416
412
-
#### I'm getting: `Something went awry creating the jwt` with `ghtoken generate`
417
+
### I'm getting: `Something went awry creating the jwt` with `ghtoken generate`
413
418
414
419
Make sure your `pem` file has the extension `.pem`. This is necessary for`jwt-cli` to be able to determine the type of key it's trying to parse.
0 commit comments