blob: f5f74e12cd16d607ea43ea3c08c4e3950991d404 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <initializer_list>
namespace google_auth_provider {
constexpr char kFuchsiaClientId[] =
"934259141868-rejmm4ollj1bs7th1vg2ur6antpbug79.apps.googleusercontent.com";
constexpr char kGoogleOAuthAuthEndpoint[] =
"https://accounts.google.com/o/oauth2/v2/auth";
constexpr char kGoogleFuchsiaEndpoint[] =
"https://accounts.google.com/embedded/setup/fuchsia";
constexpr char kGoogleOAuthTokenEndpoint[] =
"https://www.googleapis.com/oauth2/v4/token";
constexpr char kGoogleRevokeTokenEndpoint[] =
"https://accounts.google.com/o/oauth2/revoke";
constexpr char kGooglePeopleGetEndpoint[] =
"https://www.googleapis.com/plus/v1/people/me";
constexpr char kFirebaseAuthEndpoint[] =
"https://www.googleapis.com/identitytoolkit/v3/relyingparty/"
"verifyAssertion";
constexpr char kRedirectUri[] = "https://localhost/fuchsiaoauth2redirect";
constexpr char kWebViewUrl[] = "web_view";
constexpr auto kScopes = {
"openid",
"email",
"https://www.googleapis.com/auth/assistant",
"https://www.googleapis.com/auth/gmail.modify",
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile",
"https://www.googleapis.com/auth/youtube.readonly",
"https://www.googleapis.com/auth/contacts",
"https://www.googleapis.com/auth/drive",
"https://www.googleapis.com/auth/plus.login",
"https://www.googleapis.com/auth/calendar.readonly",
"https://www.googleapis.com/auth/devstorage.read_write"};
} // namespace google_auth_provider