I get the following error while trying to authenticate using LinkedIn. "Invalid redirect URI"
The link is valid and registered in my application inside the developer linked to the site.
What can cause this error?
var auth = new OAuth2Authenticator
(
clientId: "MYID",
scope: "r_basicprofile",
authorizeUrl: new Uri("https://www.linkedin.com/uas/oauth2/authorization?response_type=code&client_id=MYID&redirect_uri=https://wicareerpathways.org/&state=987654321&scope=r_basicprofile"),
redirectUrl: new Uri("https://wicareerpathways.org/")
);
source
share