-
Notifications
You must be signed in to change notification settings - Fork 353
Expand file tree
/
Copy pathja.ts
More file actions
80 lines (79 loc) · 2.81 KB
/
ja.ts
File metadata and controls
80 lines (79 loc) · 2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import { IntroductionDictionaryModel } from "@/features/localization/models/introduction-dictionary.model";
export const jaIntroductionDictionary: IntroductionDictionaryModel = {
metadata: {
title: "JSON Web Tokenの概要 - jwt.io",
description:
"JSON Web Tokenとは何か、どのように機能するのか、いつ、なぜ使用する必要があるのかについて学びましょう。",
authors: [
{
name: "Auth0",
url: "auth0.com",
},
],
images: ["/img/ja.facebook-card.png"],
keywords: ["json web token", "jwt", "rfc 7519", "security"],
datePublished: "2024-11-30T09:00:00-08:00",
dateModified: "2024-11-30T09:00:00-08:00",
// TODO: Current site has also: meta(name='canonical', content='https://auth0.com/learn/json-web-tokens/') Verify with SEO team if that's still needed in any way
twitter: {
card: "summary_large_image",
creator: "@auth0",
title: "JWT.IO - JSON Web Tokenの概要",
description:
"JSON Web Tokenとは何か、どのように機能するのか、いつ、なぜ使用する必要があるのかについて学びましょう。",
images: "/img/ja.twitter-card.png",
},
openGraph: {
type: "website",
title: "JWT.IO - JSON Web Tokenの概要",
description:
"JSON Web Tokenとは何か、どのように機能するのか、いつ、なぜ使用する必要があるのかについて学びましょう。",
locale: "ja_JP",
url: "https://jwt.io/introduction",
images: {
url: "/img/ja.facebook-card.png",
type: "image/png",
width: 1200,
height: 630,
},
},
},
hero: {
title: "JSON Web Tokenの概要",
description:
"JSON Web Tokenとは何か、どのように機能するのか、いつ、なぜ使用する必要があるのかについて学びましょう。",
},
content: {
headings: [
{
title: "JSON Web Tokenとは?",
id: "what-is-json-web-token",
},
{
title: "JSON Web Tokenはいつ使用すべきか?",
id: "when-to-use-json-web-tokens",
},
{
title: "JSON Web Tokenの構成は?",
id: "what-is-json-web-token-structure",
},
{
title: "JSON Web Tokenの仕組みとは?",
id: "how-json-web-tokens-work",
},
{
title: "JSON Web Tokenを使用すべき理由とは?",
id: "why-use-json-web-tokens",
},
{
title:
"JWTのバリデーション(妥当性確認)とベリフィケーション(検証)の違い",
id: "difference-validating-verifying-jwt",
},
{
title: "JWTのデコーディングとエンコーディングの違い",
id: "difference-decoding-encoding-jwt",
},
],
},
};