aspnetcore/src/Microsoft.AspNet.Authentica.../FacebookAuthenticationDefau...

17 lines
661 B
C#

// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.AspNet.Authentication.Facebook
{
public static class FacebookAuthenticationDefaults
{
public const string AuthenticationScheme = "Facebook";
public const string AuthorizationEndpoint = "https://www.facebook.com/v2.2/dialog/oauth";
public const string TokenEndpoint = "https://graph.facebook.com/v2.2/oauth/access_token";
public const string UserInformationEndpoint = "https://graph.facebook.com/v2.2/me";
}
}