Skip to content

update public trial #246

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ <h2>Simulated Shopping Cart</h2>
// Create a new instance of Dynamsoft BarcodeScanner with configuration options
const scanner = new Dynamsoft.BarcodeScanner({
// License key for Dynamsoft Barcode Reader (replace with a valid key)
license: "YOUR-LICENSE-KEY",
license: "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9",

// Specify the path to the engine resources (loaded from CDN in this case)
engineResourcePaths: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ <h1 class="barcode-scanner-title">
// Configuration object for initializing the BarcodeScanner instance. Refer to https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/api-reference/barcode-scanner.html#barcodescannerconfig
let config = {
// Replace with your Dynamsoft license key
license: "YOUR-LICENSE-KEY",
license: "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9",

// Specify where to render the scanner UI
container: ".barcode-scanner-view",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class AppComponent {
async ngAfterViewInit(): Promise<void> {
// Configuration object for initializing the BarcodeScanner instance
const config = {
license: "YOUR-LICENSE-KEY", // Replace with your Dynamsoft license key
license: "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", // Replace with your Dynamsoft license key
container: ".barcode-scanner-view", // Specify where to render the scanner UI

// Specify the path for the definition file "barcode-scanner.ui.xml" for the scanner view.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ <h1 class="barcode-scanner-title">
<script>
// Configuration object for initializing the BarcodeScanner instance. Refer to https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/api-reference/barcode-scanner.html#barcodescannerconfig
let config = {
license: "YOUR-LICENSE-KEY", // Replace with your Dynamsoft license key
license: "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", // Replace with your Dynamsoft license key
container: ".barcode-scanner-view", // Specify where to render the scanner UI
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function App() {
useEffect(() => {
// Configuration object for initializing the BarcodeScanner instance
const config = {
license: "YOUR-LICENSE-KEY", // Replace with your Dynamsoft license key
license: "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", // Replace with your Dynamsoft license key
container: ".barcode-scanner-view", // Specify where to render the scanner UI

// Specify the path for the definition file "barcode-scanner.ui.xml" for the scanner view.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import vueLogo from "./assets/vue.svg";
onMounted(() => {
// Configuration object for initializing the BarcodeScanner instance
const config = {
license: "YOUR-LICENSE-KEY", // Replace with your Dynamsoft license key
license: "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", // Replace with your Dynamsoft license key
container: ".barcode-scanner-view", // Specify where to render the scanner UI

// Specify the path for the definition file "barcode-scanner.ui.xml" for the scanner view.
Expand Down