Skip to content

Commit 1ade2c4

Browse files
save file
1 parent 6e51ba8 commit 1ade2c4

File tree

1 file changed

+83
-14
lines changed

1 file changed

+83
-14
lines changed

blog/25-07-29/gcloud-create-oauth-token/gcloud-create-oauth-token.html

Lines changed: 83 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,106 @@
11

22

33

4-
<html>
4+
<!DOCTYPE html>
55

6+
<html>
67

78
<head>
8-
9+
<meta charset=utf-8>
910

10-
<title></title>
11+
<title>
12+
Gcloud Create OAuth Token
13+
</title>
1114

12-
<base href='https://javascript-2020.github.io/blog/29-07-25/gcloud-create-oauth-token/gcloud-create-oauth-token.html'>
13-
15+
<meta name="description" content="Learn how to generate an OAuth token using Google Cloud's gcloud CLI and REST API. This guide covers uploading a ZIP archive, configuring credentials, and deploying services with secure authentication.">
1416
<link rel=icon type='image/png' href='/blog/image/blog-30.png'>
17+
<meta name=viewport content='width=device-width, initial-scale=1'>
18+
19+
<base href='https://javascript-2020.github.io/blog/25-07-29/gcloud-create-oauth-token/'>
20+
<link rel=canonical href='https://ext-code.com/blog/25-07-29/gcloud-create-oauth-token/gcloud-create-oauth-token.html'>
21+
22+
23+
<script src='https://libs.ext-code.com/js/dom/component/component.js'></script>
24+
25+
<script src='https://libs.ext-code.com/js/dom/init-hdr/init-hdr.js'></script>
26+
1527

1628
<link rel=stylesheet href='/blog/css/blog.css'>
1729

30+
<style>
31+
32+
html
33+
{height:100%;font-family:arial}
34+
body
35+
{min-height:calc(100% - 40px);display:flex;flex-direction:column;gap:20px;margin:20px;align-items:center;
36+
padding-bottom:200px;
37+
}
38+
body>*
39+
{max-width:1400px;width:100%;padding:0 20px;}
40+
41+
[component]
42+
{display:none}
43+
44+
.description
45+
{max-width:1000px;text-align:justify;border-left:4px solid #4a90e2;padding:1rem;
46+
background-color:#f9f9f9;font-family:system-ui,sans-serif;font-size:1rem;line-height:1.6;color:#333}
47+
.description>p
48+
{margin:0}
49+
.description > p+p
50+
{margin:10px 0}
51+
52+
code
53+
{font-family:monospace;background:whitesmoke}
54+
code.inline
55+
{display:inline;padding:5px 10px}
56+
57+
a
58+
{color:#4a90e2;text-decoration:none;font-weight:500}
59+
a:hover
60+
{text-decoration:underline}
61+
.link-domain
62+
{font-size:0.85rem;color:#777;margin-left:0.25rem}
63+
.link-domain::before
64+
{content:'['}
65+
.link-domain::after
66+
{content:']'}
67+
.link-txt
68+
{}
69+
70+
input
71+
{font-size:16px;padding:5px 7px;box-sizing:border-box;}
72+
input[type=button]
73+
{cursor:pointer}
74+
75+
76+
77+
pre
78+
{background:whitesmoke;border:1px solid gray;padding:10px}
79+
80+
81+
</style>
82+
1883

1984
</head>
2085

2186

2287
<body>
2388

89+
<blog-hdr component=grp1 v2.0>
90+
<h1 class=title>
91+
Gcloud Create OAuth Token
92+
</h1>
93+
<time slot=date datetime=2025-10-22>
94+
22 Oct 2025
95+
</time>
96+
</blog-hdr>
2497

2598

26-
<h3>
27-
gcloud create oauth token
28-
</h3>
29-
30-
31-
<div id=desc>
32-
33-
creating oauth token
34-
99+
<div class=description>
100+
<p>
101+
Learn how to generate an OAuth token using Google Cloud's gcloud CLI and REST API. This guide covers uploading a ZIP archive, configuring credentials,
102+
and deploying services with secure authentication.
103+
</p>
35104
</div>
36105

37106

0 commit comments

Comments
 (0)