Kameleoon offers you an API and some functions allowing you to handle a specific behavior or complex tests. To know more, please read our developer documentation
Welcome to Kameleoon API! This API will allow you to use every entity of Kameleoon application inside your own application. Find the full list of the supported functionalities. To know more, please read our developer documentation
What are API Credentials? By providing a client_id and a client_secret to an authorization end-point, you will obtain an access token. You will then be able to access the Automation API by using this token as a Bearer Token present in a Authorization HTTP request header. It is linked to a user account and can […]
By default, Kameleoon allocate randomly a variation to a visitor. Here is the function used by Kameleoon: function (experiment) { var registeredVariationId; var deviationRandom = experiment.obtainVariationAssignmentRandomNumber(); var total = 0.0; for (var i = 0, l = experiment.variations.length; i < l; ++i) { total += experiment.variations[i].deviation; if (deviationRandom <= […]
By default, Kameleoon allocates randomly a variation to a visitor. Here is the function used. function (experiment) { var registeredVariationId; var deviationRandom = experiment.obtainVariationAssignmentRandomNumber(); var total = 0.0; for (var i = 0, l = experiment.variations.length; i < l; ++i) { total += experiment.variations[i].deviation; if (deviationRandom <= total) […]
Kameleoon has extensive support for client-side and server-side implementation of experiments, feature flags and personalizations. Client-side SDKs JavaScript / TypeScript on the browser (ReactJS, Angular, Vue…) React Server-side SDKs Java C# PHP NodeJS Ruby Python Go Nginx Apache To know more, please read our developer documentation
In addition to its client-side capabilities, Kameleoon has extensive support for mobile implementation of experiments, feature flags and personalizations. Android (Kotlin/Java) iOS (Swift) Flutter To know more, please read our developer documentation