{"id":18446483,"url":"https://github.com/ovh/go-ovh","last_synced_at":"2025-05-14T12:10:07.548Z","repository":{"id":45540904,"uuid":"41881575","full_name":"ovh/go-ovh","owner":"ovh","description":"Simple go wrapper for the OVH API","archived":false,"fork":false,"pushed_at":"2025-05-07T13:37:43.000Z","size":161,"stargazers_count":135,"open_issues_count":5,"forks_count":35,"subscribers_count":21,"default_branch":"master","last_synced_at":"2025-05-07T14:43:46.796Z","etag":null,"topics":["api-wrapper"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ovh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-09-03T20:15:30.000Z","updated_at":"2025-05-07T13:37:47.000Z","dependencies_parsed_at":"2024-03-29T18:26:00.469Z","dependency_job_id":"828a5a01-d3f0-4075-bdcb-950347f0f82a","html_url":"https://github.com/ovh/go-ovh","commit_stats":{"total_commits":90,"total_committers":26,"mean_commits":"3.4615384615384617","dds":0.7666666666666666,"last_synced_commit":"9c5297024e0b551f222c66504a3ffdf7b0cd479b"},"previous_names":["gregdel/govh"],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ovh%2Fgo-ovh","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ovh%2Fgo-ovh/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ovh%2Fgo-ovh/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ovh%2Fgo-ovh/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ovh","download_url":"https://codeload.github.com/ovh/go-ovh/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254140749,"owners_count":22021219,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api-wrapper"],"created_at":"2024-11-06T07:09:29.660Z","updated_at":"2025-05-14T12:10:07.531Z","avatar_url":"https://github.com/ovh.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"go-ovh\n======\n\nLightweight Go wrapper around OVHcloud's APIs. Handles all the hard work including credential creation and requests signing.\n\n[![GoDoc](https://godoc.org/github.com/ovh/go-ovh/go-ovh?status.svg)](http://godoc.org/github.com/ovh/go-ovh/ovh)\n[![Build Status](https://github.com/ovh/go-ovh/actions/workflows/golang-build.yaml/badge.svg?branch=master)](https://github.com/ovh/go-ovh/actions?query=workflow:golang-build)\n[![Coverage Status](https://coveralls.io/repos/github/ovh/go-ovh/badge.svg?branch=master)](https://coveralls.io/github/ovh/go-ovh?branch=master)\n[![Go Report Card](https://goreportcard.com/badge/ovh/go-ovh)](http://goreportcard.com/report/ovh/go-ovh)\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\t\"github.com/ovh/go-ovh/ovh\"\n)\n\n// PartialMe holds the first name of the currently logged-in user.\n// Visit https://api.ovh.com/console/#/me#GET for the full definition\ntype PartialMe struct {\n\tFirstname string `json:\"firstname\"`\n}\n\n// Instantiate an OVH client and get the firstname of the currently logged-in user.\n// Visit https://api.ovh.com/createToken/index.cgi?GET=/me to get your credentials.\nfunc main() {\n\tvar me PartialMe\n\n\tclient, err := ovh.NewClient(\n\t\t\"ovh-eu\",\n\t\tYOUR_APPLICATION_KEY,\n\t\tYOUR_APPLICATION_SECRET,\n\t\tYOUR_CONSUMER_KEY,\n\t)\n\tif err != nil {\n\t\tfmt.Printf(\"Error: %q\\n\", err)\n\t\treturn\n\t}\n\n\tclient.Get(\"/me\", \u0026me)\n\tfmt.Printf(\"Welcome %s!\\n\", me.Firstname)\n}\n```\n\n## Installation\n\nThe Golang wrapper has been tested with Golang 1.18+. It may worker with older versions although it has not been tested.\n\nTo use it, just include it to your ``import`` and run ``go get``:\n\n```go\nimport (\n\t...\n\t\"github.com/ovh/go-ovh/ovh\"\n)\n```\n\n## Configuration\n\nThe straightforward way to use OVHcloud's API keys is to embed them directly in the\napplication code. While this is very convenient, it lacks of elegance and\nflexibility.\n\nAlternatively it is suggested to use configuration files or environment\nvariables so that the same code may run seamlessly in multiple environments.\nProduction and development for instance.\n\n`go-ovh` supports two forms of authentication:\n- OAuth2, using scopped service accounts, and compatible with OVHcloud IAM\n- application key \u0026 application secret \u0026 consumer key\n\n### OAuth2\n\nFirst, you need to generate a pair of valid `client_id` and `client_secret`: you\ncan proceed by [following this documentation](https://help.ovhcloud.com/csm/en-manage-service-account?id=kb_article_view\u0026sysparm_article=KB0059343)\n\nOnce you have retrieved your `client_id` and `client_secret`, you can create and edit\na configuration file that will be used by `go-ovh`.\n\n```ini\n[default]\n; general configuration: default endpoint\nendpoint=ovh-eu\n\n[ovh-eu]\n; configuration specific to 'ovh-eu' endpoint\nclient_id=my_client_id\nclient_secret=my_client_secret\n```\n\nThe client will successively attempt to locate this configuration file in\n\n1. Current working directory: ``./ovh.conf``\n2. Current user's home directory: ``~/.ovh.conf``\n3. System wide configuration: ``/etc/ovh.conf``\n\nDepending on the API you want to use, you may set the ``endpoint`` to:\n\n* ``ovh-eu`` for OVHcloud Europe API\n* ``ovh-us`` for OVHcloud US API\n* ``ovh-ca`` for OVHcloud Canada API\n\nThis lookup mechanism makes it easy to overload credentials for a specific\nproject or user.\n\n### Access Token\n\nThis authentication method is useful when short-lived credentials are necessary.\nE.g. oauth2 [plugin](https://github.com/puppetlabs/vault-plugin-secrets-oauthapp)\nfor HashiCorp Vault can request an access token that would be used by OVHcloud\nterraform provider. Although this token, requested via data-source, would end up\nstored in the Terraform state file, that would pose less risk since the token\nvalidity would last for only 1 hour.\n\nOther applications are of course also possible.\n\nIn order to use the access token with this wrapper either use\n`ovh.NewAccessTokenClient` to create the client, or pass the token via\n`OVH_ACCESS_TOKEN` environment variable to `ovh.NewDefaultClient`.\n\n### Application Key/Application Secret\n\nIf you have completed successfully the __OAuth2__ part, you can continue to\n[the Use the Lib part](https://github.com/ovh/go-ovh?tab=readme-ov-file#use-the-lib).\n\nThis section will cover the legacy authentication method using application key and\napplication secret.\nThis wrapper will first look for direct instanciation parameters then\n``OVH_ENDPOINT``, ``OVH_APPLICATION_KEY``, ``OVH_APPLICATION_SECRET`` and\n``OVH_CONSUMER_KEY`` environment variables. If either of these parameter is not\nprovided, it will look for a configuration file of the form:\n\n```ini\n[default]\n; general configuration: default endpoint\nendpoint=ovh-eu\n\n[ovh-eu]\n; configuration specific to 'ovh-eu' endpoint\napplication_key=my_app_key\napplication_secret=my_application_secret\nconsumer_key=my_consumer_key\n```\n\nDepending on the API you want to use, you may set the ``endpoint`` to:\n\n* ``ovh-eu`` for OVHcloud Europe API\n* ``ovh-us`` for OVHcloud US API\n* ``ovh-ca`` for OVHcloud Canada API\n* ``soyoustart-eu`` for So you Start Europe API\n* ``soyoustart-ca`` for So you Start Canada API\n* ``kimsufi-eu`` for Kimsufi Europe API\n* ``kimsufi-ca`` for Kimsufi Canada API\n* Or any arbitrary URL to use in a test for example\n\nThe client will successively attempt to locate this configuration file in\n\n1. Current working directory: ``./ovh.conf``\n2. Current user's home directory ``~/.ovh.conf``\n3. System wide configuration ``/etc/ovh.conf``\n\nThis lookup mechanism makes it easy to overload credentials for a specific\nproject or user.\n\n#### Register your app\n\nOVHcloud's API, like most modern APIs is designed to authenticate both an application and\na user, without requiring the user to provide a password. Your application will be\nidentified by its \"application secret\" and \"application key\" tokens.\n\nHence, to use the API, you must first register your application and then ask your\nuser to authenticate on a specific URL. Once authenticated, you'll have a valid\n\"consumer key\" which will grant your application on specific APIs.\n\nThe user may choose the validity period of his authorization. The default period is\n24h. He may also revoke an authorization at any time. Hence, your application should\nbe prepared to receive 403 HTTP errors and prompt the user to re-authenticate.\n\nThis process is detailed in the following section. Alternatively, you may only need\nto build an application for a single user. In this case you may generate all\ncredentials at once. See below.\n\n##### Use the API on behalf of a user\n\nVisit [https://eu.api.ovh.com/createApp](https://eu.api.ovh.com/createApp) and create your app\nYou'll get an application key and an application secret. To use the API you'll need a consumer key.\n\nThe consumer key has two types of restriction:\n\n* path: eg. only the ```GET``` method on ```/me```\n* time: eg. expire in 1 day\n\nThen, get a consumer key. Here's an example on how to generate one.\n\nFirst, create a 'ovh.conf' file in the current directory with the application key and\napplication secret. You can add the consumer key once generated. For alternate\nconfiguration method, please see the [configuration section](#configuration).\n\n```ini\n[ovh-eu]\napplication_key=my_app_key\napplication_secret=my_application_secret\n; consumer_key=my_consumer_key\n```\n\nThen, you may use a program like this example to create a consumer key for the application:\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/ovh/go-ovh/ovh\"\n)\n\nfunc main() {\n\t// Create a client using credentials from config files or environment variables\n\tclient, err := ovh.NewEndpointClient(\"ovh-eu\")\n\tif err != nil {\n\t\tfmt.Printf(\"Error: %q\\n\", err)\n\t\treturn\n\t}\n\tckReq := client.NewCkRequest()\n\n\t// Allow GET method on /me\n\tckReq.AddRules(ovh.ReadOnly, \"/me\")\n\n\t// Allow GET method on /xdsl and all its sub routes\n\tckReq.AddRecursiveRules(ovh.ReadOnly, \"/xdsl\")\n\n\t// Run the request\n\tresponse, err := ckReq.Do()\n\tif err != nil {\n\t\tfmt.Printf(\"Error: %q\\n\", err)\n\t\treturn\n\t}\n\n\t// Print the validation URL and the Consumer key\n\tfmt.Printf(\"Generated consumer key: %s\\n\", response.ConsumerKey)\n\tfmt.Printf(\"Please visit %s to validate it\\n\", response.ValidationURL)\n}\n```\n\n##### Use the API for a single user\n\nAlternatively, you may generate all creadentials at once, including the consumer key. You will\ntypically want to do this when writing automation scripts for a single projects.\n\nIf this case, you may want to directly go to https://eu.api.ovh.com/createToken/ to generate\nthe 3 tokens at once. Make sure to save them in one of the 'ovh.conf' configuration file.\nPlease see the [configuration section](#configuration).\n\n``ovh.conf`` should look like:\n\n```ini\n[ovh-eu]\napplication_key=my_app_key\napplication_secret=my_application_secret\nconsumer_key=my_consumer_key\n```\n\n## Use the lib\n\nThese examples assume valid credentials are available in the [configuration](#configuration).\n\n### GET\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/ovh/go-ovh/ovh\"\n)\n\nfunc main() {\n\tclient, err := ovh.NewEndpointClient(\"ovh-eu\")\n\tif err != nil {\n\t\tfmt.Printf(\"Error: %q\\n\", err)\n\t\treturn\n\t}\n\n\t// Get all the xdsl services\n\txdslServices := []string{}\n\tif err := client.Get(\"/xdsl/\", \u0026xdslServices); err != nil {\n\t\tfmt.Printf(\"Error: %q\\n\", err)\n\t\treturn\n\t}\n\n\t// xdslAccess represents a xdsl access returned by the API\n\ttype xdslAccess struct {\n\t\tName   string `json:\"accessName\"`\n\t\tStatus string `json:\"status\"`\n\t\tPairs  int\t`json:\"pairsNumber\"`\n\t\t// Insert the other properties here\n\t}\n\n\t// Get the details of each service\n\tfor i, serviceName := range xdslServices {\n\t\taccess := xdslAccess{}\n\t\turl := \"/xdsl/\" + serviceName\n\n\t\tif err := client.Get(url, \u0026access); err != nil {\n\t\t\tfmt.Printf(\"Error: %q\\n\", err)\n\t\t\treturn\n\t\t}\n\t\tfmt.Printf(\"#%d : %+v\\n\", i+1, access)\n\t}\n}\n```\n\n### PUT\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/ovh/go-ovh/ovh\"\n)\n\nfunc main() {\n\tclient, err := ovh.NewEndpointClient(\"ovh-eu\")\n\tif err != nil {\n\t\tfmt.Printf(\"Error: %q\\n\", err)\n\t\treturn\n\t}\n\n\t// Params\n\ttype AccessPutParams struct {\n\t\tDescription string `json:\"description\"`\n\t}\n\n\t// Update the description of the service\n\tparams := \u0026AccessPutParams{Description: \"My awesome access\"}\n\tif err := client.Put(\"/xdsl/xdsl-yourservice\", params, nil); err != nil {\n\t\tfmt.Printf(\"Error: %q\\n\", err)\n\t\treturn\n\t}\n\n\tfmt.Println(\"Description updated\")\n}\n```\n\n### Use v1 and v2 API versions\n\nWhen using OVHcloud APIs (not So you Start or Kimsufi ones), you are given the\nopportunity to aim for two API versions. For the European API, for example:\n\n- the v1 is reachable through https://eu.api.ovh.com/v1\n- the v2 is reachable through https://eu.api.ovh.com/v2\n- the legacy URL is https://eu.api.ovh.com/1.0\n\nCalling `client.Get`, you can target the API version you want:\n\n```go\nclient, _ := ovh.NewEndpointClient(\"ovh-eu\")\n\n// Call to https://eu.api.ovh.com/v1/xdsl/xdsl-yourservice\nclient.Get(\"/v1/xdsl/xdsl-yourservice\", nil)\n\n// Call to https://eu.api.ovh.com/v2/xdsl/xdsl-yourservice\nclient.Get(\"/v2/xdsl/xdsl-yourservice\", nil)\n\n// Legacy call to https://eu.api.ovh.com/1.0/xdsl/xdsl-yourservice\nclient.Get(\"/xdsl/xdsl-yourservice\", nil)\n```\n\n## API Documentation\n\n### Create a client\n\n- Use ``ovh.NewDefaultClient()`` to create a client using endpoint and credentials from config files or environment\n- Use ``ovh.NewEndpointClient()`` to create a client for a specific API and use credentials from config files or environment\n- Use ``ovh.NewOAuth2Client()`` to have full control over their authentication, using OAuth2 authentication method\n- Use ``ovh.NewAccessTokenClient()`` to have full control over their authentication, using token that was previously issued by auth/oauth2/token endpoint\n- Use ``ovh.NewClient()`` to have full control over their authentication, using legacy authentication method\n\n### Query\n\nEach HTTP verb has its own Client method. Some API methods supports unauthenticated calls. For\nthese methods, you may want to use the ``*UnAuth`` variant of the Client which will bypass\nrequest signature.\n\nEach helper accepts a ``method`` and ``resType`` argument. ``method`` is the full URI, including\nthe query string, and ``resType`` is a reference to an object in which the json response will\nbe unserialized.\n\nAdditionally, ``Post``, ``Put`` and their ``UnAuth`` variant accept a reqBody which is a\nreference to a json serializable object or nil.\n\nAlternatively, you may directly use the low level ``CallAPI`` method.\n\n- Use ``client.Get()`` for GET requests\n- Use ``client.Post()`` for POST requests\n- Use ``client.Put()`` for PUT requests\n- Use ``client.Delete()`` for DELETE requests\n\nOr, for unauthenticated requests:\n\n- Use ``client.GetUnAuth()`` for GET requests\n- Use ``client.PostUnAuth()`` for POST requests\n- Use ``client.PutUnAuth()`` for PUT requests\n- Use ``client.DeleteUnAuth()`` for DELETE requests\n\n### Request consumer keys\n\n__[Only valid for legacy authentication method]__\n\nConsumer keys may be restricted to a subset of the API. This allows to delegate the API to manage\nonly a specific server or domain name for example. This is called \"scoping\" a consumer key.\n\nRules are simple. They combine an HTTP verb (GET, POST, PUT or DELETE) with a pattern. A pattern\nis a plain API method and may contain the '*' wilcard to match \"anything\". Just like glob on a\nUnix machine.\n\nWhile this is simple and may be managed directly with the API as-is, this can be cumbersome to do\nand we recommend using the ``CkRequest`` helper. It basically manages the list of authorizations\nfor you and the actual request.\n\n*example*: Grant on all /sms and identity\n```go\nclient, err := ovh.NewEndpointClient(\"ovh-eu\")\nif err == nil {\n    // Do something\n}\nreq := client.NewCkRequest()\nreq.AddRules(ovh.ReadOnly, \"/me\")\nreq.AddRecursiveRulesRules(ovh.ReadWrite, \"/sms\")\npendingCk, err := req.Do()\n```\n\nThis example will generate a request for:\n\n- GET /me\n- GET /sms\n- GET /sms/*\n- POST /sms\n- POST /sms/*\n- PUT /sms\n- PUT /sms/*\n- DELETE /sms\n- DELETE /sms/*\n\nWhich would be tedious to do by hand...\n\n*Create a ``CkRequest``*:\n\n```go\nreq := client.NewCkRequest()\n```\n\n*Request access on a specific path and method* (advanced):\n```go\n// Use this method for fine-grain access control. In most case, you'll\n// want to use the methods below.\nreq.AddRule(\"VERB\", \"PATTERN\")\n```\n\n*Request access on specific path*:\n```go\n// This will generate all patterns for GET PATH\nreq.AddRules(ovh.ReadOnly, \"/PATH\")\n\n// This will generate all patterns for PATH for all HTTP verbs\nreq.AddRules(ovh.ReadWrite, \"/PATH\")\n\n// This will generate all patterns for PATH for all HTTP verbs, except DELETE\nreq.AddRules(ovh.ReadWriteSafe, \"/PATH\")\n```\n\n*Request access on path and all sub-path*:\n```go\n// This will generate all patterns for GET PATH\nreq.AddRecursiveRules(ovh.ReadOnly, \"/PATH\")\n\n// This will generate all patterns for PATH for all HTTP verbs\nreq.AddRecursiveRules(ovh.ReadWrite, \"/PATH\")\n\n// This will generate all patterns for PATH for all HTTP verbs, except DELETE\nreq.AddRecusriveRules(ovh.ReadWriteSafe, \"/PATH\")\n```\n\n*Create key*:\n\n```go\npendingCk, err := req.Do()\n```\n\nThis will initiate the consumer key validation process and return both a consumer key and\na validation URL. The consumer key is automatically added to the client which was used to\ncreate the request. It may be used as soon as the user has authenticated the request on the\nvalidation URL.\n\n\n``pendingCk`` contains 3 fields:\n- ``ValidationURL`` the URL the user needs to visit to activate the consumer key\n- ``ConsumerKey`` the new consumer key. It won't be active until validation\n- ``State`` the consumer key state. Always \"pendingValidation\" at this stage\n\n\n## Hacking\n\nThis wrapper uses standard Go tools, so you should feel at home with it.\nHere is a quick outline of what it may look like.\n\n### Get the sources\n\n```\ngo get github.com/ovh/go-ovh/ovh\ncd $GOPATH/src/github.com/ovh/go-ovh/ovh\ngo get\n```\n\nYou've developed a new cool feature ? Fixed an annoying bug ? We'd be happy\nto hear from you ! See [CONTRIBUTING.md](https://github.com/ovh/go-ovh/blob/master/CONTRIBUTING.md)\nfor more informations\n\n### Run the tests\n\nSimply run ``go test``. Since we all love quality, please\nnote that we do not accept contributions lowering coverage.\n\n```\n# Run all tests, with coverage\ngo test -cover\n\n# Validate code quality\ngolint ./...\ngo vet ./...\n```\n\n## Supported APIs\n\n### OVHcloud Europe\n\n- **Documentation**: https://eu.api.ovh.com/\n- **Community support**: api-subscribe@ml.ovh.net\n- **Console**: https://eu.api.ovh.com/console\n- **Create application credentials**: https://eu.api.ovh.com/createApp/\n- **Create script credentials** (all keys at once): https://eu.api.ovh.com/createToken/\n\n### OVHcloud US\n\n- **Documentation**: https://api.us.ovhcloud.com/\n- **Console**: https://api.us.ovhcloud.com/console/\n- **Create application credentials**: https://api.us.ovhcloud.com/createApp/\n- **Create script credentials** (all keys at once): https://api.us.ovhcloud.com/createToken/\n\n### OVHcloud Canada\n\n- **Documentation**: https://ca.api.ovh.com/\n- **Community support**: api-subscribe@ml.ovh.net\n- **Console**: https://ca.api.ovh.com/console\n- **Create application credentials**: https://ca.api.ovh.com/createApp/\n- **Create script credentials** (all keys at once): https://ca.api.ovh.com/createToken/\n\n### So you Start Europe\n\n- **Documentation**: https://eu.api.soyoustart.com/\n- **Community support**: api-subscribe@ml.ovh.net\n- **Console**: https://eu.api.soyoustart.com/console/\n- **Create application credentials**: https://eu.api.soyoustart.com/createApp/\n- **Create script credentials** (all keys at once): https://eu.api.soyoustart.com/createToken/\n\n### So you Start Canada\n\n- **Documentation**: https://ca.api.soyoustart.com/\n- **Community support**: api-subscribe@ml.ovh.net\n- **Console**: https://ca.api.soyoustart.com/console/\n- **Create application credentials**: https://ca.api.soyoustart.com/createApp/\n- **Create script credentials** (all keys at once): https://ca.api.soyoustart.com/createToken/\n\n### Kimsufi Europe\n\n- **Documentation**: https://eu.api.kimsufi.com/\n- **Community support**: api-subscribe@ml.ovh.net\n- **Console**: https://eu.api.kimsufi.com/console/\n- **Create application credentials**: https://eu.api.kimsufi.com/createApp/\n- **Create script credentials** (all keys at once): https://eu.api.kimsufi.com/createToken/\n\n### Kimsufi Canada\n\n- **Documentation**: https://ca.api.kimsufi.com/\n- **Community support**: api-subscribe@ml.ovh.net\n- **Console**: https://ca.api.kimsufi.com/console/\n- **Create application credentials**: https://ca.api.kimsufi.com/createApp/\n- **Create script credentials** (all keys at once): https://ca.api.kimsufi.com/createToken/\n\n## License\n\n3-Clause BSD\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fovh%2Fgo-ovh","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fovh%2Fgo-ovh","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fovh%2Fgo-ovh/lists"}