Ray
1
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.
Ray
2
Ok I got the above part to work. I needed to setup the OAuth2 Authorise like below.

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?
Ray
4
Don’t worry support no need to help a client.
I figured it out myself.
George
5
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
Ray
6
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.