* Evernote provider is now available. Based on Evernote SDK for .NET and the obsolete doc (ie. https://dev.evernote.com/doc/articles/authentication.php) (Step 3 is POST, not GET) * Fix SyncrhonizationContext deadlock caused by ASP.NET site * Evernote provider now working trought Xamarin OAuthAuthenticator and Identity Server 3 * Add claims for notestoreuri and accesstoken * Evernote OK, before cleanup * Cleanup * Remove my credentials in demo project. * Change the default URL to lower case
25 lines
701 B
C#
25 lines
701 B
C#
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
|
|
|
|
using Microsoft.Owin.Security;
|
|
|
|
namespace Owin.Security.Providers.Evernote.Messages
|
|
{
|
|
/// <summary>
|
|
/// Yahoo request token
|
|
/// </summary>
|
|
public class RequestToken
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the Yahoo token
|
|
/// </summary>
|
|
public string Token { get; set; }
|
|
|
|
public bool CallbackConfirmed { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a property bag for common authentication properties
|
|
/// </summary>
|
|
public AuthenticationProperties Properties { get; set; }
|
|
}
|
|
}
|