Sign in With LINE

License Latest Stable Version Total Downloads

A Flarum extension. Login to your Flarum forum using LINE

This extension adds LINE as an OAuth provider to FoF OAuth. You must therefore first enable the OAuth extension before enabling this extension.

Setup

In order to enable Login with LINE, you must first register on the Line developer console.

Once registered, create a new channel of the type LINE login, and select web app. Once you've created the channel, make a note of the Channel ID and Channel secret, then navigate to the LINE login tab. Here enter the callback URL for your forum - this will be displayed within the OAuth extension settings in your admin panel and look something like https://forum.example.com/auth/line.

If you wish to retrieve the registered email address from LINE, you must also complete the OpenID Connect Email Permission within the channel setup.

Enter the Channel ID and Channel secret in the admin panel for your forum (This can be found at {YOUR FORUM URL)/admin#/extension/fof-oauth

Installation

Install with composer:

composer require ianm/oauth-line:"*"

Updating

composer update ianm/oauth-line
php flarum cache:clear

Sponsored

The initial version of this extension was commissioned by @opencart

Links

    about android login with line
    after line login succes, page not auto reload ...
    .
    because line login redirect page url to auth ...
    it's make window.opener is null
    https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cross-Origin-Opener-Policy
    .
    so ... ResponseFactory.php ... authenticationComplete not work
    window.opener.app.authenticationComplete(%s);
    .
    I add cookieStore.addEventListener

    <script>
    cookieStore.addEventListener("change", (event) => {
      window.location.reload();
    });
    </script>

    .
    then edit ResponseFactory.php (cookieStore.set)

    private function makeResponse(array $payload): HtmlResponse
    {
        $content = sprintf(
            '
            <script>
            window.close(); 
            cookieStore.set({name: "isLogin",  value: "yes"});
            window.opener.app.authenticationComplete(%s);
            </script>
            ',
            json_encode($payload)
        );
        return new HtmlResponse($content);
    }

    .
    I'm not a programmer, just googled, pieced together the code, if there is a better solution, please let me know
    .
    change event not support firefox & safari (but they support window.opener)
    https://developer.mozilla.org/en-US/docs/Web/API/CookieStore/change_event#browser_compatibility
    .
    many thanks for IanM

      6 months later

      opencart I add cookieStore.addEventListenerwindow.openerwindow.opener.app.authenticationComplete(%s);
      <script>
      cookieStore.addEventListener("change", (event) => {
      window.location.reload();
      });
      </script>

      Will this be added to the Custom Footer?
      I get infinite reload ^^

      3 months later

      https://your.flarum.url/admin#/appearance
      edit custom header

      <script>
      cookieStore.onchange = function(event) {
          if (event.changed.some(cookie => cookie.name === "isLogin")) {
              console.log("isLogin cookie has changed!");
              window.location.reload();
          }
      };
      </script>

      .
      then edit ResponseFactory.php
      path: vendor/flarum/core/src/Forum/Auth

      private function makeResponse(array $payload): HtmlResponse
      {
          $content = sprintf(
              '
              <script>
              window.close(); 
              const timestamp = new Date().getTime();
              cookieStore.set({name: "isLogin", value: timestamp.toString()});
              window.opener.app.authenticationComplete(%s);
              </script>
              ',
              json_encode($payload)
          );
          return new HtmlResponse($content);
      }

      .
      my flarum work, you can try on android phone
      https://opencart.cc

        Subarist Because I am changing layout of the login 🤣
        I put the button of line login at the bottom

          Subarist the owner of the oauth line application seems to need a developer role. That is what the error seems to imply.

            opencart
            The login function is now working properly, but on mobile devices, it still cannot directly return to flarum. need to go back to the previous page on the LINE authentication screen.