1

使用 DotNetOpenAuth 请求访问令牌时,它仅对基本用户配置文件进行身份验证。

Authorization.BeginAuthorize();

有没有办法要求用户对他们的完整个人资料进行身份验证,也许是通过在令牌管理器中指定一些东西?

我知道在向 LinkedIn API 发布 POST 时,您添加了范围参数,但是有没有办法使用 DotNetOpenAuth 和 LinkedIn Developer Toolkit 来做到这一点?

https://api.linkedin.com/uas/oauth/requestToken?scope=r_fullprofile

我还可以看到,在 LinkedIn Developer Toolkit 中有很多 ProfileField 枚举用于完整的个人资料,所以我假设可以通过这种方式访问​​它们。例如

ProfileField.Industry

ProfileField.ThreeCurrentPositions

4

1 回答 1

2

我也在寻找一种方法来做到这一点。您需要扩展 LinkedIn Developer Toolkit。

下载源

将以下函数重载添加到WebOAuthAuthorization.cs

public void BeginAuthorize(Uri callback, IDictionary<string, string> requestParameters)
{
    this.Consumer.Channel.Send(this.Consumer.PrepareRequestUserAuthorization(callback, requestParameters, null));
}

编译它并在您的项目中添加对它的引用(如果您正在使用它,请删除 NuGet 包)。然后您就可以从您的代码中调用它,如下所示:

WebOAuthAuthentication webAuth = new WebOAuthAuthentication(LinkedInTokenManager, null);
Uri callback = new Uri("http://your.callback.uri");
Dictionary<string, string> requestParameters = new Dictionary<string, string>();
requestParameters.Add("scope", "r_fullprofile r_network");
webAuth.BeginAuthorize(callback, requestParameters);

至于您的第二个问题,配置文件字段 ENUM 用于传递给GetCurrentUser方法(可能还有其他方法)以指定要返回的字段,例如

LinkedInService li = new LinkedInService(webAuth);
List<ProfileField> fields = new List<ProfileField>();
fields.Add(ProfileField.ThreeCurrentPositions);
fields.Add(ProfileField.Industry);
Person person = li.GetCurrentUser(ProfileType.Standard, fields);

然后可以在Person对象上访问这些字段(您未指定的字段为空)。

于 2012-09-15T18:02:04.613 回答