mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-12 18:32:14 +01:00
35 lines
1.0 KiB
Markdown
35 lines
1.0 KiB
Markdown
---
|
|
title: Clients
|
|
---
|
|
|
|
We provide clients in various languages for easing the interactions with the API.
|
|
|
|
## Go client
|
|
|
|
```bash
|
|
$ go get -u github.com/thecodingmachine/gotenberg-go-client/v7
|
|
```
|
|
|
|
See also the example from the [README](https://github.com/thecodingmachine/gotenberg-go-client/blob/master/README.md).
|
|
|
|
## PHP client
|
|
|
|
Unless your project already has a PSR7 `HttpClient`, install `php-http/guzzle6-adapter`:
|
|
|
|
```bash
|
|
$ composer require php-http/guzzle6-adapter
|
|
```
|
|
|
|
Then the [PHP client](https://github.com/thecodingmachine/gotenberg-php-client):
|
|
|
|
```bash
|
|
$ composer require thecodingmachine/gotenberg-php-client
|
|
```
|
|
|
|
See also the example from the [README](https://github.com/thecodingmachine/gotenberg-php-client/blob/master/README.md).
|
|
|
|
## Community clients
|
|
|
|
* [JavaScript/TypeScript client](https://github.com/yumauri/gotenberg-js-client) by [yumauri](https://github.com/yumauri)
|
|
* [C# client](https://github.com/ChangemakerStudios/GotenbergSharpApiClient) by [ChangemakerStudios](https://github.com/ChangemakerStudios)
|