Vue Bundle is a ready-to-use project designed to help developers create apps for merchants who use Selldone store builder and e-commerce platform.
Selldone, as an eCommerce platform, operates like an angel for the growth of businesses. Whether you have a small brick and mortar store or a large company, you need to showcase your product on the internet. Lower operating costs and greater flexibility.Selldone used to build online stores. We are providing an always-improving e-commerce management toolchain that gains new features every weak, like integrating store administration and visual programming interface to create custom automation processes or AI integration.
Visit the Selldone Apps to learn more. For more information about creating apps for the Selldone merchants and customers, take a look at the development documentations.
Visit the Free Ecommerce Platform to learn more about Selldone.
Visit the Selldone Shop Owner API Playground to learn more about Selldone's API.
Visit the Selldone Shop Customer API Playground to learn more about Selldone's XAPI Customer APIs.
yarn install
yarn serve
yarn build
Guide to run full feature Selldone applications on your local machine.
# Local app url
http://localhost:8000?api={api_key}&shop_id={shop_id}
You can simulate app loading procedure by adding sop_id and api to your local app's url query.
api_key : Your application API key. Find in Shuttle > Company > App > API Key
shop_id : Merchant shop ID. find in your admin store url => https://selldone.com/shuttle/shop/ 1 (YOUR SHOP ID)
You must set redirect url and scope by metas in your application pages's header.
Meta | Description | Require |
---|---|---|
app-redirect-url | Client app redirect URL | ✔ |
app-scope | Access scopes | ✔ |
app-access-token | Customer access token | ❌ |
# Page header (index.html)
<meta name="app-redirect-url" content="APP REDIRECT URL Ex. localhost:8000 or your-domain.com/sample-app">
<meta name="app-scope" content="ACCESS SCOPES HERE Ex. profile shop-products shop-warehouse shop-process-center">
Access token has been saved in page sessions! sessionStorage is similar to localStorage; the difference is that while data in localStorage doesn't expire, data in sessionStorage is cleared when the page session ends. You can save access token in your secure database (Your server) and provide that in the app-access-token meta.
# Page header (index.html)
<meta name="app-access-token" content="ACCESS TOKEN HERE">