English 中文(简体)
如何从链接中获取姓名、电子邮件或name名 使用LoginRadius
原标题:How to get name, email or nickname from LinkedIn provider when using LoginRadius

在这样做时,来自联系公司的意见:

LoginRadiusSDKv2.LoginRadius loginradius = new LoginRadiusSDKv2.LoginRadius("<API SECRET>");
if (loginradius.IsAuthenticated)
{
    var userprofile = loginradius.GetBasicUserProfile();

No useful data is returned, only the userprofile.ID. For the other providers I display the email address, (for twitter the userprofile.ProfileName).

我为建立联系做了些什么? 我可以在LoginRadius网站为这一特别提供者找到任何文件。

最佳回答

查询——如果该用户信息提供人有基本用户信息数据,你可以获取这些数据。 链接和Twitter在用户简介数据中提供电子邮件地址,因此,必须为此添加特别检查:

if (userprofile.Email != null) {  }

You can get more data using these parameters:

userprofile.FirstName //first name of user
userprofile.FullName //full name of user
userprofile.Gender //gender of user
userprofile.ID //ID of user on provider
userprofile.LastName //last name of user
userprofile.MiddleName //middle name of user  
userprofile.NickName //nick name of user

详情请见:https://www.loginradius.com/develers/implementation/dot-net-websites

Some additional info:
To see what data exist real-time, you can view it on the PlayGround section: https://www.loginradius.com/developers/apiplayground

让我知道,你是否需要其他信息来执行LoginRadius方案。

Thanks,
Deepak

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签