- Download the AT&T API Platform SDK for HTML5 and unzip the file at the top level of your local development server. The package also includes versions of our SDK sample apps that you can install and run locally.
- Read the SDK documentation within the downloaded package.
- Create a free AT&T Developer Program account and get the App Key and App Secret required for access to APIs at http://developer.att.com/.
- Configure a local instance of your chosen server. For help, see the Server Guide section of the SDK documentation.
- Once the server is running, run the sample apps on your local machine at http://127.0.0.1:4567
- Build your own Web app, and include att-api-client.js:
<script type="text/javascript" src="../sdk/client/att-api-client.js"></script>
- Call AT&T APIs using the appropriate code. For example:
AttApiClient.InAppMessaging.getMessageList ( function(response) {…/* success */ …}, function(response) {…/* fail */…});
The SDK source code is available under the Apache 2.0 open-source license from our Github repository.