This is the project that generates API clients for connecting to the public Square API. You probably want to just use one of the clients that are pre-built in a language of your choice:
The Connect Examples are working sample applications that you can copy from to build your own.
This repository contains the specifications for generating client SDKs with Swagger/OpenAPI.
The canonical specification is defined in api.json
. The templates for our
supported SDKs are located in swagger-templates
. The configuration for each
SDK (e.g. name of the library, version number, etc.) are located in
swagger-config
.
Generating an SDK for a new language is possible. You'll need to have a working version of swagger-codegen
and follow these steps:
- Check if Swagger Codegen supports the language by running:
swagger-codegen langs
- If the language is supported, note swagger's name for it. We'll call it {lang}
- Add a configuration file on swagger-config named
config-{lang}.json
. You can check this template. - Create a directory on swagger-templates named
{lang}
. Generation scripts expect to have a folder even if no custom templates are included:mkdir $lang
- (Optional) Add custom templates for your generator. Check Swagger Codegen Readme.
See CONTRIBUTING.md.
Copyright 2016 - 2021 Square, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.