Server-Side SDKs

Our server-side SDKs provide you with the means to effortlessly create client applications. Each SDK in each language provides all of the necessary codes, so you only need to follow our guide below.

Gameball currently supports server-side integration with the following languages through configured SDKs:

Installation

Navigate through the different tabs below to view the installation steps for each language.

Terminal

# Install via npm
npm install gameball

Initialization

Require Gameball SDK in your project, as shown below.

var gameball = require('gameball')

Our SDKs need to be configured with API and transaction keys for your account. For more information on how to get this info through your Gameball dashboard, check this article.

var Gameball = new gameball(apikey,transactionKey)

For more details, check the API Reference or see the source code on GitHub.

Last updated