Get public app details
Last updated
Was this helpful?
Last updated
Was this helpful?
There are several methods in JS API created specifically for public applications.
Ecwid.getAppPublicToken('client_id')
This method accepts app client_id
as an argument and responds with a public access token for the app. Public tokens are safe to use on the storefront, as they won't be able to reveal any private store data.
Code example:
Ecwid.getAppPublicConfig('client_id')
This method accepts app client_id
as an argument and responds with a "public config" for the app, which is the data saved in App Storage as a public key. Read more about setting up .
Code example:
Ecwid.getInitializedWidgets()
This method responds with a list of widgets currently loaded on the website. Full list of widgets:
Minicart
- Minicart widget
SearchPanel
- Search widget
ProductBrowser
- Main storefront widget, contains full Ecwid store
Categories
- Horizontal categories menu widget
Product
- Widget with an embedded product page
Code example:
Ecwid.isStorefrontV3()
This method is useful for public applications developed before 2024. It helps apps to adapt their design by detecting the old storefront version.
Code example: