Skip to content

Commit 44ece47

Browse files
authored
Clarify Python JWT example uses client ID or app ID (#59668)
1 parent db4dd39 commit 44ece47

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

content/apps/creating-github-apps/authenticating-with-a-github-app/generating-a-json-web-token-jwt-for-a-github-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ encoded_jwt = jwt.encode(payload, signing_key, algorithm='RS256')
130130
print(f"JWT: {encoded_jwt}")
131131
```
132132

133-
This script will prompt you for the file path where your private key is stored and for the ID of your app. Alternatively, you can pass those values as inline arguments when you execute the script.
133+
This script will prompt you for the file path where your private key is stored and for the {% ifversion client-id-for-app %}client ID{% else %}app ID{% endif %} of your app. Alternatively, you can pass those values as inline arguments when you execute the script.
134134

135135
### Example: Using Bash to generate a JWT
136136

0 commit comments

Comments
 (0)