LinkedInOAuthApi 0.3.2-pre

This is a prerelease version of LinkedInOAuthApi.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package LinkedInOAuthApi --version 0.3.2-pre
NuGet\Install-Package LinkedInOAuthApi -Version 0.3.2-pre
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LinkedInOAuthApi" Version="0.3.2-pre" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LinkedInOAuthApi --version 0.3.2-pre
#r "nuget: LinkedInOAuthApi, 0.3.2-pre"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install LinkedInOAuthApi as a Cake Addin
#addin nuget:?package=LinkedInOAuthApi&version=0.3.2-pre&prerelease

// Install LinkedInOAuthApi as a Cake Tool
#tool nuget:?package=LinkedInOAuthApi&version=0.3.2-pre&prerelease

Specifically for ASP.Net using the DotNetOpenAuth framework.
IoC friendly using ILinkedInService interface.

LinkedInOAuthClient linkedInOAuthClient = new LinkedInOAuthClient(...);
OR
LinkedInOAuthClient linkedInOAuthClient = LinkedInOAuthClient.CreateCookieBasedClient(...)

THEN
OAuthWebSecurity.RegisterClient((IAuthenticationClient)linkedInOAuthClient, "LinkedIn", null);

... after login ...

Person me = client.GetCurrentUser();
var id = me.PersonId;

Samples: https://github.com/deeja/LinkedInDeveloperToolkit

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.3.3-pre 7,464 1/27/2013
0.3.2-pre 974 1/27/2013
0.3.1-pre 974 1/27/2013
0.3.0-pre 971 1/27/2013
0.2.0-pre 1,428 11/28/2012

0.3 - Updates to the DotNetOpenAuth.AspNet Version
- Added static method: LinkedInOAuthClient.CreateCookieBasedClient(key,secret,service description)
- Fixed broken package

0.2 - Contains Significant Breaking Changes From LinkedInToolKit
- Scoped Permissions (thanks paulirwin)
- Added an interface: ILinkedInService
- Added an Asp.Net OAuthClient / IAuthenticationClient LinkedInOAuthClient that implements ILinkedInService
- Removed two obsolete Methods (DeleteStatus and UpdateStatus)
- Removed Desktop references

Originally From the LinkedInToolKit 1.0.0.0

This project has been uploaded to GitHub.
Any Issues, report them to https://github.com/deeja/LinkedInDeveloperToolkit