Launch Params
With Launch Params, you can pass custom data to your mobile apps while running in Appetize. It can be useful to load custom content, skip onboarding, auto-login a specified user, or custom tracking.
Passing Data to your Application
With Query Parameter
¶ms={"foo":"bar"}¶ms=%7B%22foo%22%3A%22bar%22%7DWith JavaScript SDK
await client.setConfig({
params: {"foo":"bar"},
...
})Retrieving Data in your Application
Last updated