Skip to content

Commit 1bb5a60

Browse files
committed
Replace license placeholders with trial key and request link
- Replace "YOUR_LICENSE_KEY_HERE" with actual public trial key - Add clear comment explaining the key is a temporary public trial - Include link to request a personal 30-day trial license
1 parent 22bed97 commit 1bb5a60

1 file changed

Lines changed: 12 additions & 7 deletions

File tree

programming/javascript/user-guide/barcode-scanner.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,9 @@ Scan One Single Barcode via Camera
7474
<script>
7575
// Initialize the Dynamsoft Barcode Scanner
7676
const barcodeScanner = new Dynamsoft.BarcodeScanner({
77-
// Please don't forget to replace YOUR_LICENSE_KEY_HERE
78-
license: "YOUR_LICENSE_KEY_HERE",
77+
// The license key below is a temporary public trial.
78+
// Request your own 30-day trial at https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&package=js
79+
license: "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9",
7980
});
8081
(async () => {
8182
// Launch the scanner and wait for the result
@@ -114,8 +115,9 @@ Scan Multiple Barcodes Continuously
114115
<script>
115116
// Initialize the Dynamsoft Barcode Scanner
116117
const barcodeScanner = new Dynamsoft.BarcodeScanner({
117-
// Please don't forget to replace YOUR_LICENSE_KEY_HERE
118-
license: "YOUR_LICENSE_KEY_HERE",
118+
// The license key below is a temporary public trial.
119+
// Request your own 30-day trial at https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&package=js
120+
license: "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9",
119121
scanMode: Dynamsoft.EnumScanMode.SM_MULTI_UNIQUE,
120122
});
121123
(async () => {
@@ -222,8 +224,9 @@ Barcode Scanner comes with a **Ready-to-Use UI**. When the Barcode Scanner launc
222224
```js
223225
// Initialize the Dynamsoft Barcode Scanner
224226
const barcodeScanner = new Dynamsoft.BarcodeScanner({
225-
// Please don't forget to replace YOUR_LICENSE_KEY_HERE
226-
license: "YOUR_LICENSE_KEY_HERE",
227+
// The license key below is a temporary public trial.
228+
// Request your own 30-day trial at https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&package=js
229+
license: "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9",
227230
});
228231
```
229232

@@ -235,7 +238,9 @@ This is the **simplest** way to initialize the Barcode Scanner. The configuratio
235238
```js
236239
// Initialize the Dynamsoft Barcode Scanner in MULTI_UNIQUE mode
237240
const barcodeScanner = new Dynamsoft.BarcodeScanner({
238-
license: "YOUR_LICENSE_KEY_HERE",
241+
// The license key below is a temporary public trial.
242+
// Request your own 30-day trial at https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&package=js
243+
license: "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9",
239244
scanMode: Dynamsoft.EnumScanMode.SM_MULTI_UNIQUE,
240245
// onUniqueBarcodeScanned: (result) => {
241246
// console.log("Scanned barcode: ", result.text);

0 commit comments

Comments
 (0)