Skip to content
This repository was archived by the owner on Oct 21, 2024. It is now read-only.

Commit f4211dd

Browse files
authored
Merge pull request #4 from artificialsolutions/develop
Update v1.0.1
2 parents baec7db + 7db2ed8 commit f4211dd

File tree

5 files changed

+28
-43
lines changed

5 files changed

+28
-43
lines changed

.env.sample

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
APP_ID=<your app id here>
2+
TOKEN=<your App Secret token here>
3+
TENEO_ENGINE_URL=<your teneo engine url here>

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# v.1.0.1
2+
## 28/10/2020
3+
1. [](#improved)
4+
* Updated dependencies.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ Your bot needs to be published and you need to know the engine URL.
2929
1. Login to the WebChat Dashboard by clicking the green login button on this page:
3030
[https://mp.weixin.qq.com/debug/cgi-bin/sandbox?t=sandbox/login](https://mp.weixin.qq.com/debug/cgi-bin/sandbox?t=sandbox/login)
3131
2. A QR code will appear. In the Wechat app, go to the Discover tab and choose 'Scan'. Scan the QR code with the Wechat app, and a sandbox configuration dashboard will be displayed.
32-
3. Choose a value for `Token` and copy or remember it, you will need it later.
32+
3. Choose yor own value to use in the `Token` field and copy or remember it, you will need it later.
3333
4. Next copy the `appID` that is shown in the first row of the first table at the top of the page.
3434
3535
### Back to Connector Setup
3636
1. Create a file called `.env` in the root folder of the project. Give it the following content:
3737
```
3838
APP_ID=<your app id here>
39-
TOKEN=<your token here>
39+
TOKEN=<your Token here>
4040
TENEO_ENGINE_URL=<your teneo engine url here>
4141
```
4242
Replace the placeholders with the values you copied earlier.

package-lock.json

+17-39
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wechat-teneo-connector",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A basic example using Teneo and WeChat",
55
"main": "server.js",
66
"engines": {
@@ -23,7 +23,7 @@
2323
"author": "Josue Galindo",
2424
"license": "Apache-2.0",
2525
"dependencies": {
26-
"@artificialsolutions/tie-api-client": "^1.3.2",
26+
"@artificialsolutions/tie-api-client": "^1.3.7",
2727
"express": "^4.17.1",
2828
"http": "0.0.0",
2929
"wechat": "^2.1.0"

0 commit comments

Comments
 (0)