-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirebase-jwt.tsx
More file actions
246 lines (233 loc) · 8.02 KB
/
firebase-jwt.tsx
File metadata and controls
246 lines (233 loc) · 8.02 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
import React, { useState } from 'react';
import Layout from '@theme/Layout';
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
function decodeJwt(token: string) {
try {
const [headerB64, payloadB64] = token.split('.');
const header = JSON.parse(atob(headerB64));
const payload = JSON.parse(atob(payloadB64));
// Extract custom claims if they exist
const customClaims = Object.entries(payload).reduce((acc, [key, value]) => {
// Skip standard JWT claims
if (!['iss', 'aud', 'auth_time', 'user_id', 'sub', 'iat', 'exp', 'email', 'email_verified'].includes(key)) {
acc[key] = value;
}
return acc;
}, {});
return { header, payload, customClaims };
} catch (e) {
return null;
}
}
export default function FirebaseJWT() {
const { siteConfig } = useDocusaurusContext();
const [apiKey, setApiKey] = useState('');
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');
const [jwt, setJwt] = useState('');
const [error, setError] = useState('');
const [loading, setLoading] = useState(false);
const generateJWT = async () => {
setLoading(true);
setError('');
setJwt('');
try {
const response = await fetch(
`https://www.googleapis.com/identitytoolkit/v3/relyingparty/verifyPassword?key=${apiKey}`,
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
email,
password,
returnSecureToken: true,
}),
}
);
const data = await response.json();
if (data.error) {
setError(data.error.message);
} else {
setJwt(data.idToken);
}
} catch (err) {
setError('Failed to generate JWT: ' + err.message);
} finally {
setLoading(false);
}
};
return (
<Layout
title="Firebase JWT Generator"
description="Generate Firebase JWT tokens for testing"
>
<div className="container margin-vert--lg">
<div className="row">
<div className="col col--10 col--offset-1">
<h1 className="margin-bottom--lg margin-top--xl">Firebase JWT Generator</h1>
<div className="margin-bottom--lg" style={{ opacity: 0.8 }}>
<p>
This tool runs entirely in your browser - no data is transmitted to our servers.
The source code is available on{' '}
<a href="https://github.com/backmesh/site/blob/main/src/pages/firebase-jwt.tsx"
target="_blank"
rel="noopener noreferrer">
GitHub
</a>. Only email and password authentication is supported.
Looking for Supabase instead? Check out the{' '}
<a href="/supabase-jwt"
rel="noopener noreferrer">
Supabase JWT Generator
</a>.
</p>
</div>
<div className="margin-bottom--lg">
<div style={{
border: '1px solid #ccc',
borderRadius: '4px',
padding: '8px',
}}>
<input
type="text"
className="input"
style={{
width: '100%',
border: 'none',
padding: '0',
fontSize: '14px',
outline: 'none',
background: 'transparent'
}}
value={apiKey}
onChange={(e) => setApiKey(e.target.value)}
placeholder="Firebase Public API Key"
/>
</div>
<div style={{ fontSize: '0.8rem', opacity: 0.8, marginTop: '4px' }}>
Need help finding your API key? Check this {' '}
<a href="docs/firebase/#step-2-set-the-firebase-project-used-for-authentication"
target="_blank"
rel="noopener noreferrer">
screenshot
</a>
</div>
</div>
<div className="margin-bottom--lg">
<div style={{
border: '1px solid #ccc',
borderRadius: '4px',
padding: '8px',
}}>
<input
type="email"
className="input"
style={{
width: '100%',
border: 'none',
padding: '0',
fontSize: '14px',
outline: 'none',
background: 'transparent'
}}
value={email}
onChange={(e) => setEmail(e.target.value)}
placeholder="Email"
/>
</div>
</div>
<div className="margin-bottom--xl">
<div style={{
border: '1px solid #ccc',
borderRadius: '4px',
padding: '8px',
}}>
<input
type="password"
className="input"
style={{
width: '100%',
border: 'none',
padding: '0',
fontSize: '14px',
outline: 'none',
background: 'transparent'
}}
value={password}
onChange={(e) => setPassword(e.target.value)}
placeholder="Password"
/>
</div>
</div>
<div className="margin-bottom--xl">
<button
className="button button--primary button--lg"
onClick={generateJWT}
disabled={loading || !apiKey || !email || !password}
>
{loading ? 'Generating...' : 'Generate JWT'}
</button>
</div>
{error && (
<div
className="margin-bottom--md"
style={{
padding: '12px',
backgroundColor: '#ffebee',
color: '#c62828',
borderRadius: '4px',
}}
>
{error}
</div>
)}
{jwt && (
<div className="margin-top--xl">
<div className="row">
<div className="col col--6">
<h4 className="margin-bottom--md">JWT Token:</h4>
<div
style={{
padding: '12px',
backgroundColor: '#f5f5f5',
borderRadius: '4px',
wordBreak: 'break-all',
}}
>
{jwt}
</div>
</div>
<div className="col col--6">
<h4 className="margin-bottom--md">Decoded Token:</h4>
<div
style={{
padding: '12px',
backgroundColor: '#f5f5f5',
borderRadius: '4px',
fontFamily: 'monospace',
}}
>
{decodeJwt(jwt) && (
<>
<h4>Header:</h4>
<pre style={{ margin: 0 }}>
{JSON.stringify(decodeJwt(jwt)?.header, null, 2)}
</pre>
<h4 style={{ marginTop: '16px' }}>Payload:</h4>
<pre style={{ margin: 0 }}>
{JSON.stringify(decodeJwt(jwt)?.payload, null, 2)}
</pre>
</>
)}
</div>
</div>
</div>
</div>
)}
</div>
</div>
</div>
</Layout>
);
}