Method
__init__
(
self,
app_id: int | str,
private_key: str,
installation_id: int,
token_permissions: dict[str, str] | None = None,
)
Source from the content-addressed store, hash-verified
| 45 | @deprecated("Use github.Auth.AppInstallationAuth instead") |
| 46 | class AppAuthentication(AppInstallationAuth): |
| 47 | def __init__( |
| 48 | self, |
| 49 | app_id: int | str, |
| 50 | private_key: str, |
| 51 | installation_id: int, |
| 52 | token_permissions: dict[str, str] | None = None, |
| 53 | ): |
| 54 | super().__init__( |
| 55 | app_auth=AppAuth(app_id, private_key), |
| 56 | installation_id=installation_id, |
| 57 | token_permissions=token_permissions, |
| 58 | ) |
Callers
nothing calls this directly
Tested by
no test coverage detected