如何从LinkedIn android获取电子邮件ID?

Neh*_*mar 1 android linkedin

如何在Android应用中emailLinkedIn个人资料中获取地址?

Mor*_*ski 10

您需要使用电子邮件权限设置范围.之后,您将能够恢复该特定数据.

private static Scope buildScope() {
    return Scope.build(Scope.R_BASICPROFILE, Scope.W_SHARE, Scope.R_EMAILADDRESS);
}
Run Code Online (Sandbox Code Playgroud)

然后使用以下URL来发出GET请求.

String url = "https://api.linkedin.com/v1/people/~:(id,first-name,last-name,public-profile-url,picture-url,email-address,picture-urls::(original))";
Run Code Online (Sandbox Code Playgroud)

使用此范围,您的ApiResponse将检索用户的电子邮件.