Skip to content

Commit d8b5171

Browse files
authored
Updated the license URL
1 parent d45914c commit d8b5171

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,13 @@ cdn
3232

3333
[Download zip](https://www.dynamsoft.com/Downloads/Dynamic-Barcode-Reader-Download.aspx?edition=js)
3434

35+
## License Key
36+
Please visit https://www.dynamsoft.com/customer/license/trialLicense to get a valid license and update `PRODUCT-KEYS`:
37+
38+
```html
39+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/dbr.js" data-productKeys="PRODUCT-KEYS"></script>
40+
```
41+
3542
## Quick Usage
3643

3744
```html
@@ -63,7 +70,7 @@ cdn
6370
6471
```js
6572
let Dynamsoft = require('dynamsoft-node-barcode');
66-
// Please visit https://www.dynamsoft.com/CustomerPortal/Portal/TrialLicense.aspx to get a trial license
73+
// Please visit https://www.dynamsoft.com/customer/license/trialLicense to get a trial license
6774
Dynamsoft.BarcodeReader.productKeys = 'PRODUCT-KEYS';
6875
6976
(async()=>{
@@ -201,14 +208,14 @@ This section will help you use the library to build a simple web application to
201208

202209
Create an HTML file with the following content. Deploy this to your web server and run the application over **HTTPS**.
203210

204-
* You will need to replace <code>PRODUCT-KEYS</code> with a trial key for the sample code to work correctly. You can acquire a trial key [here](https://www.dynamsoft.com/CustomerPortal/Portal/TrialLicense.aspx).
211+
* You will need to replace <code>PRODUCT-KEYS</code> with a trial key for the sample code to work correctly. You can acquire a trial key [here](https://www.dynamsoft.com/customer/license/trialLicense).
205212
* If you don't have a ready-to-use web server and you happen to have a package manager like `npm` or `yarn`, you can set up a simple http server in minutes. Check out http-server on [npm](https://www.npmjs.com/package/http-server) or [yarn](https://yarnpkg.com/en/package/http-server).
206213

207214
```html
208215
<!DOCTYPE html>
209216
<html>
210217
<body>
211-
<!-- Please visit https://www.dynamsoft.com/CustomerPortal/Portal/TrialLicense.aspx to get a trial license. -->
218+
<!-- Please visit https://www.dynamsoft.com/customer/license/trialLicense to get a trial license. -->
212219
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/dbr.js" data-productKeys="PRODUCT-KEYS"></script>
213220
<script>
214221
let scanner = null;
@@ -420,7 +427,7 @@ The following introduces the 3rd way. Check out the following code on how it's d
420427
<div id="div-video-container">
421428
<video class="dbrScanner-video" playsinline="true"></video>
422429
</div>
423-
<!-- Please visit https://www.dynamsoft.com/CustomerPortal/Portal/TrialLicense.aspx to get a trial license. -->
430+
<!-- Please visit https://www.dynamsoft.com/customer/license/trialLicense to get a trial license. -->
424431
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/dbr.js" data-productKeys="PRODUCT-KEYS"></script>
425432
<script>
426433
let scanner = null;
@@ -716,7 +723,7 @@ It takes several steps to activate a purchased license, the following steps assu
716723
You may have noticed that in all the samples above, we have the following line of code
717724

718725
```html
719-
<!-- Please visit https://www.dynamsoft.com/CustomerPortal/Portal/TrialLicense.aspx to get a trial license. -->
726+
<!-- Please visit https://www.dynamsoft.com/customer/license/trialLicense to get a trial license. -->
720727
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/dbr.js" data-productKeys="PRODUCT-KEYS"></script>
721728
```
722729

0 commit comments

Comments
 (0)