Skip to content

Commit 0b1d40d

Browse files
authored
add doc & etc..
1 parent bf07529 commit 0b1d40d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,21 @@
66
<img src ="https://i.imgur.com/HD07Rj9.gif" />
77
</p>
88

9+
## Authentication
10+
1. Visit the [Google Developers Console](https://console.developers.google.com/project)
11+
2. Create a new project or click on an existing project.
12+
3. Navigate to **APIs & auth** > **APIs section** and turn on the following APIs (you may need to enable billing in order to use these services): Google Cloud Speech API
13+
4. Navigate to **APIs & auth** > **Credentials** and then:
14+
* If you want to use a new service account key, click on **Create credentials** and select **Service account key**. After the account key is created, you will be prompted to download the JSON key file that the library uses to authenticate your requests.
15+
* If you want to generate a new service account key for an existing service account, click on **Generate new JSON key** and download the JSON key file.
16+
17+
## Config
18+
After at Authentication done getting the json file and insert At ``app.js``
19+
``` bash
20+
const speech = Speech({
21+
keyFilename: '' // insert this file json here.
22+
});
23+
```
924

1025
## Setup Project
1126

0 commit comments

Comments
 (0)