Skip to content

The goal of ghapp is to facilitate the use of GitHub Apps for authenticating with the GitHub API within R.

License

Notifications You must be signed in to change notification settings

ian-flores/ghapp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ghapp

The goal of ghapp is to facilitate the use of GitHub Apps for authenticating with the GitHub API within R.

Installation

You can install the development version of ghapp from GitHub with:

# install.packages("devtools")
devtools::install_github("ian-flores/ghapp")

Workflow

This package implements the Authenticating as a GitHub App Worflow: https://docs.github.com/en/developers/apps/building-github-apps/authenticating-with-github-apps#authenticating-as-a-github-app

Authenticating as a GitHub App lets you do a couple of things:

  • You can retrieve high-level management information about your GitHub App.
  • You can request access tokens for an installation of the app.

To authenticate as a GitHub App, generate a private key in PEM format and download it to your local machine. You'll use this key to sign a JSON Web Token (JWT) and encode it using the RS256 algorithm. GitHub checks that the request is authenticated by verifying the token with the app's stored public key.

Example

This is an example which shows you how to generate a GitHub App Installation Token.

library(ghapp)

app_id <- "12345"
private_key_path <- "~/Downloads/gh-app-key.pem"

token <- get_github_app_token(app_id, private_key_path)

The get_github_app_token() function returns the token as a value, but will not print it.

You can obtain both the App ID and the Private Key from the settings page of the GitHub App: https://docs.github.com/en/developers/apps/building-github-apps/authenticating-with-github-apps#generating-a-private-key

License

Copyright 2022 Voltron Data

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

The goal of ghapp is to facilitate the use of GitHub Apps for authenticating with the GitHub API within R.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Languages