欢迎大家。 目前我正在使用Xamarin.Forms。 有人可以告诉mi请问如何在xamarin.auth中设置redirectUrl? 我坚持这个。 现在写我在我的.Droid项目中有这样的东西:
var authUrl = "https://www.linkedin.com/uas/oauth2/authorization";
var redirectUrl = "http://localhost:3000/signin_linkedin";
var tokenUrl = "https://www.linkedin.com/uas/oauth2/accessToken";
var auth = new OAuth2Authenticator(
clientId: "*",
clientSecret: "*",
scope: "r_basicprofile",
authorizeUrl: new System.Uri(authUrl),
redirectUrl: new System.Uri(redirectUrl),
accessTokenUrl: new System.Uri(tokenUrl));
我设法让LinkedIn登录并传递表格。 当我点击“唱歌并允许”时,我收到如下错误: “http://localhost:3000/signin_linkedin?code=的网页......” 无法加载因为: 净:: ERR_CONNECTION_REFUSED
我认为这种行为的原因是redirectUrl无效。 最好的祝福 米哈尔