From 1a163eb78df02abb0afeff83522a1c09e7795875 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Tue, 1 Sep 2020 17:58:07 +0300 Subject: [PATCH] minor: README --- README.md | 4 +++- _examples/auth/goth/main.go | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e02d3b97..dc028cd5 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,8 @@ Learn what [others saying about Iris](https://iris-go.com/testimonials/) and **[ ```sh # https://github.com/kataras/iris/wiki/Installation $ go get github.com/kataras/iris/v12@master +$ go get github.com/iris-contrib/middleware@master +$ go get github.com/iris-contrib/swagger@master # assume the following code in main.go file $ cat main.go ``` @@ -218,7 +220,7 @@ For a more detailed technical documentation you can head over to our [godocs](ht [![follow Iris web framework on facebook](https://img.shields.io/badge/Follow%20%40Iris.framework-453-2D88FF.svg?style=for-the-badge&logo=facebook)](https://www.facebook.com/iris.framework) -You can [request](https://www.iris-go.com/#ebookDonateForm) a PDF version and online access of the **E-Book** today and be participated in the development of Iris. +You can [request](https://www.iris-go.com/#ebookDonateForm) a PDF and online access of the **Iris E-Book** (New Edition, **future v12.2.0+**) today and be participated in the development of Iris. ## 🙌 Contributing diff --git a/_examples/auth/goth/main.go b/_examples/auth/goth/main.go index 4c8ef4ca..3b4111a9 100644 --- a/_examples/auth/goth/main.go +++ b/_examples/auth/goth/main.go @@ -190,7 +190,7 @@ CompleteUserAuth does what it says on the tin. It completes the authentication process and fetches all of the basic information about the user from the provider. It expects to be able to get the name of the provider from the query parameters -as either "provider" or ":provider". +as either "provider" or "{provider}" path parameter. See https://github.com/markbates/goth/examples/main.go to see this in action. */