LinkedIn login

Morning I am trying to create a login with LinkedIn. Tried to follow the Facebook example with no luck.

I get the following error:

Bummer, something went wrong.

The redirect_uri does not match the registered value

Anyone used LinkedIn and have a working example or instructions?

Thank you.

Ok I got the above part to work. I needed to setup the OAuth2 Authorise like below.

Screenshot 2021-01-26 at 13.28.46

My big question now is what does the callback action look like?

In passport we set up the following:

app.get(
  "/auth/linkedin/callback",
  passport.authenticate("linkedin", { failureRedirect: "/login" }),
  function (req, res) {
    res.redirect("/");
  }
);

How do this get replicated in the Server Connect?

Anybody?

Wappler support?

Don’t worry support no need to help a client.

I figured it out myself.

Well it’s seems just nobody has tried this one yet Ray.

So if you have found a solution feel free to share it.

1 Like

Will do. Just working on a Mongo DB extension with login, register and full crud. will add the linkedin to that and push to a git repository.

1 Like