1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/website/docs/user_guide/native-apps.md
2021-10-26 11:25:19 +02:00

1.8 KiB

id title
proxy-api The Unleash Proxy api

For a high level introduction to the Unleash-proxy, please read this short article The Unleash-Proxy

The Unleash-proxy consist of the proxy that exposes a simple API for the client.

Unleash Proxy

The Proxy-client

There is a js implementation of the proxy-client available. Find it here: https://github.com/unleash/unleash-proxy-client-js

The Proxy-API

When accessing the Proxy, Unleash context fields from the session context can be added as parameters to the request. The proxy will return only enabled feature toggles and their evaluated value for the given context. You may also use custom context fields in combination with strategy constraints.

https://hostname.com/api/proxy?appName=webapp&userId=123&country=NO

The Proxy will return a list of all the active feature toggles, including variants, available. See an example below

{
    "toggles": [
    {
        "enabled": true,
        "name": "SimpleToggle",
        "variant": {
            "enabled": false,
            "name": "disabled"
        }
    },
    {
        "enabled": true,
        "name": "ToggleWithVariant",
        "variant": {
            "enabled": true,
            "name": "brown"
        }
    },
    {
        "enabled": true,
        "name": "ToggleWithVariantAndPayload",
        "variant": {
            "enabled": true,
            "name": "default",
            "payload": {
                "type": "string",
                "value": "Some custom value here!"
            }
        }
    }
    ]
}