Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 1.26 KB

apps.md

File metadata and controls

53 lines (40 loc) · 1.26 KB

Applications API

Back to the navigation

Wraps GitHub Applications API.

Create a new installation token

For the installation id 123 use the following:

$token = $client->api('apps')->createInstallationToken(123);

To create an access token on behalf of a user with id 456 use:

$token = $client->api('apps')->createInstallationToken(123, 456);

Find all installations

Find all installations for the authenticated application.

$installations = $client->api('apps')->findInstallations();

Find installations for a user

$installations = $client->api('current_user')->installations();

List repositories

List repositories that are accessible to the authenticated installation.

$repositories = $client->api('apps')->listRepositories(456);

List repositories for a given installation and user

$repositories = $client->api('current_user')->repositoriesByInstallation(456);

Add repository to installation

Add a single repository to an installation.

$client->api('apps')->addRepository(123);

Remove repository from installation

Remove a single repository from an installation.

$client->api('apps')->removeRepository(123);