pub async fn git_slash_get_blob(
configuration: &Configuration,
owner: &str,
repo: &str,
file_sha: &str,
) -> Result<Blob, Error<GitSlashGetBlobError>>
Expand description
The content
in the response will always be Base64 encoded. This endpoint supports the following custom media types. For more information, see "Media types." - application/vnd.github.raw+json
: Returns the raw blob data. - application/vnd.github+json
: Returns a JSON representation of the blob with content
as a base64 encoded string. This is the default if no media type is specified. Note This endpoint supports blobs up to 100 megabytes in size.