kataras on master
add Party.RemoveRoute method as… (compare)
kataras on master
add Party.RemoveRoute method as… (compare)
kataras on master
add Party.RemoveRoute method as… (compare)
kataras on master
Thanks @RainerGevers and @shado… (compare)
kataras on master
Thanks @knavels, @rxrw, @rbondi… (compare)
kataras on master
Happy Greek Independence Day! (compare)
kataras on master
Thanks @wofka72 for your kind d… (compare)
kataras on master
add CustomPathWordFunc Merge pull request #1746 from y… (compare)
kataras on master
bug fix #1741 add a tls.Config parameter for … Merge pull request #1742 from t… (compare)
kataras on master
Thanks @GeorgeFourikis and @mbl… (compare)
guys i have problem with url params , i use this mode in gin gonic work it without problem but in Iris on get I received Not Found
, this is parameter /validate=:lic
or /validate={lic:string}
or /?validate=:lic
sample 127.0.0.1:8080/validate=123456
code router.Get("/validate/:lic", src.GetLicense)
@kataras Bro I don't have $ money for donate can i get book other edition for gift? i ago time request for Iris book pdf (https://bit.ly/iris-req-book)
Hello @Ja7adR, this is the old link, the new one is: https://www.iris-go.com/#ebookDonateForm but no problem, send me your GitHub username, I am sure we will find a way you can support Iris without $$.
guys i have problem with url params , i use this mode in gin gonic work it without problem but in Iris on get I received
Not Found
, this is parameter/validate=:lic
or/validate={lic:string}
or/?validate=:lic
sample
127.0.0.1:8080/validate=123456
code
router.Get("/validate/:lic", src.GetLicense)
As we've said above, in Iris you do not have :param
or *param
. Use {param:string}
and {param:path}
respectfully. Routing examples: https://github.com/kataras/iris/tree/master/_examples/routing.
@kataras Bro I don't have $ money for donate can i get book other edition for gift? i ago time request for Iris book pdf (https://bit.ly/iris-req-book)
Hello @Ja7adR, this is the old link, the new one is: https://www.iris-go.com/#ebookDonateForm but no problem, send me your GitHub username, I am sure we will find a way you can support Iris without $$.
my github username is @Ja7adR but , I in iris is Beginner
@focusonline you can downgrade, just change the @v12-alpha
to @v12.1.8
however this is not recommended, if you have troubles using v12-alpha
there is the @master
branch which contains fixes over the 3 months old alpha version.
If you have issues please open a github ticket so I and others can provide assistance.
go: github.com/kataras/iris/v12@v12.2.0-alpha requires
gopkg.in/yaml.v3@v3.0.0-20200615113413-eeeca48fe776/go.mod: verifying module: gopkg.in/yaml.v3@v3.0.0-20200615113413-eeeca48fe776/go.mod: cannot authenticate record data in server response
. Any idea how to sort the issue?
Hi folks, I am getting the following error running iris -
go: github.com/kataras/iris/v12@v12.2.0-alpha requires gopkg.in/yaml.v3@v3.0.0-20200615113413-eeeca48fe776/go.mod: verifying module: gopkg.in/yaml.v3@v3.0.0-20200615113413-eeeca48fe776/go.mod: cannot authenticate record data in server response
. Any idea how to sort the issue?
^ Fixed by zapping the current GOPATH, looks like a local issue with go mod.
go clean --modcache
? If so, maybe we should add it to the installation's troubleshooting section.