|
32 | 32 |
|
33 | 33 | [Download zip](https://www.dynamsoft.com/Downloads/Dynamic-Barcode-Reader-Download.aspx?edition=js) |
34 | 34 |
|
| 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 | + |
35 | 42 | ## Quick Usage |
36 | 43 |
|
37 | 44 | ```html |
|
63 | 70 |
|
64 | 71 | ```js |
65 | 72 | 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 |
67 | 74 | Dynamsoft.BarcodeReader.productKeys = 'PRODUCT-KEYS'; |
68 | 75 |
|
69 | 76 | (async()=>{ |
@@ -201,14 +208,14 @@ This section will help you use the library to build a simple web application to |
201 | 208 |
|
202 | 209 | Create an HTML file with the following content. Deploy this to your web server and run the application over **HTTPS**. |
203 | 210 |
|
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). |
205 | 212 | * 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). |
206 | 213 |
|
207 | 214 | ```html |
208 | 215 | <!DOCTYPE html> |
209 | 216 | <html> |
210 | 217 | <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. --> |
212 | 219 | < script src= "https://cdn.jsdelivr.net/npm/[email protected]/dist/dbr.js" data-productKeys= "PRODUCT-KEYS"></ script> |
213 | 220 | <script> |
214 | 221 | let scanner = null; |
@@ -420,7 +427,7 @@ The following introduces the 3rd way. Check out the following code on how it's d |
420 | 427 | <div id="div-video-container"> |
421 | 428 | <video class="dbrScanner-video" playsinline="true"></video> |
422 | 429 | </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. --> |
424 | 431 | < script src= "https://cdn.jsdelivr.net/npm/[email protected]/dist/dbr.js" data-productKeys= "PRODUCT-KEYS"></ script> |
425 | 432 | <script> |
426 | 433 | let scanner = null; |
@@ -716,7 +723,7 @@ It takes several steps to activate a purchased license, the following steps assu |
716 | 723 | You may have noticed that in all the samples above, we have the following line of code |
717 | 724 |
|
718 | 725 | ```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. --> |
720 | 727 | < script src= "https://cdn.jsdelivr.net/npm/[email protected]/dist/dbr.js" data-productKeys= "PRODUCT-KEYS"></ script> |
721 | 728 | ``` |
722 | 729 |
|
|
0 commit comments