Closed
Description
Code of Conduct
- I have read and agree to the GitHub Docs project's Code of Conduct
What article on docs.github.com is affected?
What part(s) of the article would you like to see updated?
There is the following example:
curl --request POST \
--url "https://api.github.comapp/installations/INSTALLATION_ID/access_tokens" \
--header "Accept: application/vnd.github+json" \
--header "Authorization: Bearer JWT"\
--header "X-GitHub-Api-Version: 2022-11-28"
where the url is missing a "/"
It should be: --url "https://api.github.com/app/installations/INSTALLATION_ID/access_tokens" \
Additional information
This part seems to be templated as this is to be found in the code line 46 (content/apps/creating-github-apps/authenticating-with-a-github-app/authenticating-as-a-github-app-installation.md):
--url "{% data variables.product.api_url_pre %}meta" \
Activity