Skip to content

Commit

Permalink
textlint
Browse files Browse the repository at this point in the history
  • Loading branch information
pikachu0310 committed Aug 27, 2023
1 parent e32dcf9 commit 2b97689
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/chapter2/section1/2_session.md
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ func GetMeHandler(c echo.Context) error { // [!code ++]
アクセスしているユーザーの`userName`をセッションから取得して返しています。
`userAuthMiddleware` を実行したあとなので、`c.Get("userName").(string)` によって userName を取得できます。

`withAuth.GET("/me", getMeHandler)``main.go`に忘れずに追加しましょう
`main.go``withAuth.GET("/me", getMeHandler)`を追加しましょう
```go
func main() {
(省略)
Expand Down
2 changes: 1 addition & 1 deletion docs/chapter2/section1/3_verify.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ handler.go
また、`GET``POST`を間違えないようにして下さい。
:::

初めに<a href="http://localhost:8080/cities/Tokyo">localhost:8080/cities/Tokyo</a>にアクセスすると、ログインしていないため`401 Unauthorized`が返ってきます。そのため、情報を入手することができません
<a href="http://localhost:8080/cities/Tokyo">localhost:8080/cities/Tokyo</a>にアクセスすると、ログインしていないため`401 Unauthorized`が返ってきます。そのため、情報を入手できません
![](postman1/../images/0/postman1.png)

ユーザーを作成します。
Expand Down

0 comments on commit 2b97689

Please sign in to comment.