Re: OAuth authentication

2022-01-18 Thread Martin Grigorov
Hi, You could use any OAuth library you like. The idea is: - when an unauthenticated user requests a secured page Wicket should redirect to the login page - that logic page is not managed by Wicket but by your preferred OAuth library - in the callback from the OAuth library you should save the

Re: OAuth authentication

2022-01-18 Thread Emond Papegaaij
Hi Boris, I would go for pac4j-oidc. It does not provide Wicket integration out of the box, but it is very easy to setup and you only need a few lines of code to check the authentication. Perhaps @dashorst can share the code: https://twitter.com/dashorst/status/280001847054336 You can find

Re: Indicator on IndicatingAjaxButton and IndicatingAjaxLink not working

2022-01-18 Thread Michelle Ee Siew Phing
Ok thanks! Will give that a go. On Wed, Jan 19, 2022 at 10:04 AM Maxim Solodovnik wrote: > from mobile (sorry for typos ;) > > > On Wed, Jan 19, 2022, 08:29 Michelle Ee Siew Phing < > michelle...@mcruncher.com> wrote: > > > LaddaAjaxButton is only available in Bootstrap 3 (Wicket-Bootstrap >

Re: Indicator on IndicatingAjaxButton and IndicatingAjaxLink not working

2022-01-18 Thread Maxim Solodovnik
from mobile (sorry for typos ;) On Wed, Jan 19, 2022, 08:29 Michelle Ee Siew Phing < michelle...@mcruncher.com> wrote: > LaddaAjaxButton is only available in Bootstrap 3 (Wicket-Bootstrap 4.0.4), > we're currently on Bootstrap 4 (Wicket-Bootstrap 5.0.5). > So this option is not available to us.

Re: Indicator on IndicatingAjaxButton and IndicatingAjaxLink not working

2022-01-18 Thread Michelle Ee Siew Phing
LaddaAjaxButton is only available in Bootstrap 3 (Wicket-Bootstrap 4.0.4), we're currently on Bootstrap 4 (Wicket-Bootstrap 5.0.5). So this option is not available to us. On Mon, Jan 17, 2022 at 5:39 PM Maxim Solodovnik wrote: > I would recommend to use > >

Re: OAuth authentication

2022-01-18 Thread Shengche Hsiao
Hello, I’m using https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions to implement OpenID Connect and OAuth 2 providers and consume oauth2 protected resource in Wicket project From: Boris Goldowsky Date: Wednesday, January 19, 2022 at 06:39 To: users@wicket.apache.org

OAuth authentication

2022-01-18 Thread Boris Goldowsky
What is the current best practice for allowing users to sign in to a Wicket application using an OAuth2 provider (eg Google account, Twitter, Canvas, etc). * Is Apache Shiro a possibility? Looks like it’s got some Wicket integration, but OAuth2 is listed as “coming”. * PicketLink? *