Skip to content

Commit c0998c2

Browse files
committed
(ja) Update README.ja.md
1 parent 47e41a3 commit c0998c2

1 file changed

Lines changed: 21 additions & 12 deletions

File tree

README.ja.md

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
[![FIWARE Security](https://nexus.lab.fiware.org/repository/raw/public/badges/chapters/security.svg)](https://github.com/FIWARE/catalogue/blob/master/security/README.md)
44
[![License: MIT](https://img.shields.io/github/license/fiware/tutorials.PEP-Proxy.svg)](https://opensource.org/licenses/MIT)
55
[![Support badge](https://img.shields.io/badge/tag-fiware-orange.svg?logo=stackoverflow)](https://stackoverflow.com/questions/tagged/fiware)
6-
<br/>
7-
[![Documentation](https://img.shields.io/readthedocs/fiware-tutorials.svg)](https://fiware-tutorials.rtfd.io)
6+
<br/> [![Documentation](https://img.shields.io/readthedocs/fiware-tutorials.svg)](https://fiware-tutorials.rtfd.io)
87

98
<!-- prettier-ignore -->
109

@@ -24,7 +23,7 @@ Keyrock GUI と REST API の部分について詳しく説明します。
2423

2524
[![Run in Postman](https://run.pstmn.io/button.svg)](https://app.getpostman.com/run-collection/6b143a6b3ad8bcba69cf)
2625

27-
# コンテンツ
26+
## コンテンツ
2827

2928
<details>
3029
<summary>詳細 <b>(クリックして拡大)</b></summary>
@@ -80,6 +79,7 @@ Keyrock GUI と REST API の部分について詳しく説明します。
8079
- [Keyrock - 永久トークンの取得](#keyrock---obtaining-a-permanent-token)
8180
- [IoT Agent - 信頼できるサービス・グループのプロビジョニング](#iot-agent---provisioning-a-trusted-service-group)
8281
- [IoT Agent - センサのプロビジョニング](#iot-agent---provisioning-a-sensor)
82+
- [次のステップ](#next-steps)
8383

8484
</details>
8585

@@ -1093,7 +1093,7 @@ function userCredentialGrant(req, res) {
10931093
const email = req.body.email;
10941094
const password = req.body.password;
10951095
1096-
oa.getOAuthPasswordCredentials(email, password).then(results => {
1096+
oa.getOAuthPasswordCredentials(email, password).then((results) => {
10971097
req.session.access_token = results.access_token;
10981098
return;
10991099
});
@@ -1363,11 +1363,11 @@ const DUMMY_DEVICE_HTTP_HEADERS = { "Content-Type": "text/plain" };
13631363
function initSecureDevices() {
13641364
Security.oa
13651365
.getOAuthPasswordCredentials(process.env.DUMMY_DEVICES_USER, process.env.DUMMY_DEVICES_PASSWORD)
1366-
.then(results => {
1366+
.then((results) => {
13671367
DUMMY_DEVICE_HTTP_HEADERS["X-Auth-Token"] = results.access_token;
13681368
return;
13691369
})
1370-
.catch(error => {
1370+
.catch((error) => {
13711371
debug(error);
13721372
return;
13731373
});
@@ -1386,7 +1386,7 @@ const options = {
13861386
body: state
13871387
};
13881388
1389-
request(options, error => {
1389+
request(options, (error) => {
13901390
if (error) {
13911391
debug(debugText + " " + error.code);
13921392
}
@@ -1512,10 +1512,10 @@ curl -X POST \
15121512

15131513
```json
15141514
{
1515-
"apikey": "1068318794",
1516-
"cbroker": "http://orion:1026",
1517-
"entity_type": "Motion",
1518-
"resource": "/iot/d",
1515+
"apikey": "1068318794",
1516+
"cbroker": "http://orion:1026",
1517+
"entity_type": "Motion",
1518+
"resource": "/iot/d"
15191519
}
15201520
```
15211521

@@ -1568,8 +1568,17 @@ curl -iX POST \
15681568
'
15691569
```
15701570

1571+
<a name="next-steps"></a>
1572+
1573+
# 次のステップ
1574+
1575+
高度な機能を追加することで、アプリケーションに複雑さを加える方法を知りたいですか
1576+
?このシリーズ
1577+
の[他のチュートリアル](https://www.letsfiware.jp/fiware-tutorials)を読むことで見
1578+
つけることができます。
1579+
15711580
---
15721581

15731582
## License
15741583

1575-
[MIT](LICENSE) © 2018-2020 FIWARE Foundation e.V.
1584+
[MIT](LICENSE) © 2018-2022 FIWARE Foundation e.V.

0 commit comments

Comments
 (0)