SylviaBABY commented on code in PR #1045: URL: https://github.com/apache/apisix-website/pull/1045#discussion_r853925888
########## website/blog/2022/04/20/weekly-report-0420.md: ########## @@ -0,0 +1,93 @@ +--- +title: Biweekly Report|Explore the weeks of Apr 1st - Apr 14th +keywords: +- Apache APISIX +- API Gateway +- Weekly Report +- Contributor +description: The Apache APISIX Community Weekly Report hopes to help community members better understand the weekly progress of the Apache APISIX community and and facilitate everyone to participate in the Apache APISIX community. +tags: [Events] +--- + +> From April 1st to April 14th, 36 contributors submitted 75 commits for Apache APISIX. Thank you all for your contributions to Apache APISIX. It is your selfless contribution to make the Apache APISIX project better! + +<!--truncate--> + +## Introduction + +Apache APISIX has grown as a community from the first day of open source and has quickly become the most active open source API gateway project in the world. These achievements cannot be achieved without the joint efforts of our community partners. + +"If you want to go fast, go alone.If you want to go far, go together." The Apache APISIX Community Weekly Report hopes to help community members better understand the weekly progress of the Apache APISIX community and and facilitate everyone to participate in the Apache APISIX community. + +We have also compiled some issues suitable for newcomers to the community to participate in! If you are interested, don't miss it! + +## Contributor Statistics + + + + + +## Good first issue + +### Issue #6803 + +**Link**: https://github.com/apache/apisix/issues/6803 + +**Issue description**: + +When I use `openid-connect` plugins with the wrong `redirect_uri` in Apache APISIX.Like flow: + +```Bash + "plugins":{ + "openid-connect":{ + ... + "scope":"openid profile", + "bearer_only":false, + "introspection_endpoint_auth_method":"client_secret_post", + "redirect_uri":"http://127.0.0.1:9080/" + ... + } + }, +``` + +Then, I request the "127.0.0.1:9080/", I will get 500, and the error log is as follow: + + + +```YAML + +2022/04/07 17:13:50 [error] 31780#3492140: *1959 [lua] openidc.lua:1378: authenticate(): request to the redirect_uri path but there's no session state found, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", host: "127.0.0.1:9080" +2022/04/07 17:13:50 [error] 31780#3492140: *1959 [lua] openid-connect.lua:304: phase_func(): OIDC authentication failed: request to the redirect_uri path but there's no session state found, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", host: "127.0.0.1:9080" +``` + +This type of log is very unclear and the user does not know what to expect. Error logging should be improved to improve the experience of using the `Openid-connect` plug-in. Review Comment: ```suggestion This type of log is very unclear and the user does not know what to expect. Error logging should be improved to improve the experience of using the `openid-connect` plug-in. ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
