Web
1. Setup an account
Click here to learn how to setup a developer account on the Appearition Platform.
2. Discover all of the APIs
Once you have a registered account, you will be able to explore, discover and test out all API endoints.
Learn how
Reference the Javascript SDK#
With an active account, you are now ready to include the Appearition Javascript SDK into your web pages.
First you need to include two important libraries:
<script src="http://cdn.appearition.com/sdk/js/core/v1.0.0/appearition.min.js"></script>
<script src="http://cdn.appearition.com/sdk/js/modules/authentication/v1.0.0/appearition.authentication.min.js"></script>
Then, for each module, you will need to also include its corresponding JS file. e.g.
<script src="http://cdn.appearition.com/sdk/js/modules/arTargetImageAndMedia/v1.0.0/appearition.arTargetImageAndMedia.min.js"></script>
See here for a full list of available JS files
When referencing our CDN…
Only HTTP is currently supported. As an alternative, you can download and self host any of the JS files.
Learn more