/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * */ #ifndef CONFIG_OAUTH2_H #define CONFIG_OAUTH2_H /* Google Drive settings */ #define GDRIVE_BASE_URL "https://www.googleapis.com/drive/v2" #define GDRIVE_CLIENT_ID "" #define GDRIVE_CLIENT_SECRET "" #define GDRIVE_AUTH_URL "https://accounts.google.com/o/oauth2/auth" #define GDRIVE_TOKEN_URL "https://accounts.google.com/o/oauth2/token" #define GDRIVE_REDIRECT_URI "urn:ietf:wg:oauth:2.0:oob" #define GDRIVE_SCOPE "https://www.googleapis.com/auth/drive" /* Alfresco Cloud */ #define ALFRESCO_CLOUD_BASE_URL "https://api.alfresco.com/" #define ALFRESCO_CLOUD_CLIENT_ID "" #define ALFRESCO_CLOUD_CLIENT_SECRET "" #define ALFRESCO_CLOUD_AUTH_URL "https://api.alfresco.com/auth/oauth/versions/2/authorize" #define ALFRESCO_CLOUD_TOKEN_URL "https://api.alfresco.com/auth/oauth/versions/2/token" #define ALFRESCO_CLOUD_REDIRECT_URI "http://127.0.0.1/Callback" #define ALFRESCO_CLOUD_SCOPE "public_api" /* OneDrive */ #define ONEDRIVE_BASE_URL "https://apis.live.net/v5.0" #define ONEDRIVE_CLIENT_ID "" #define ONEDRIVE_CLIENT_SECRET "" #define ONEDRIVE_AUTH_URL "https://login.live.com/oauth20_authorize.srf" #define ONEDRIVE_TOKEN_URL "https://login.live.com/oauth20_token.srf" #define ONEDRIVE_REDIRECT_URI "https://login.live.com/oauth20_desktop.srf" #define ONEDRIVE_SCOPE "wl.skydrive_update wl.offline_access" #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ b/libreoffice-6-2'>distro/cib/libreoffice-6-2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/soltools
AgeCommit message (Expand)Author
2021-10-20loplugin:indentation check for indent inside blockNoel Grandin
2021-10-05drop 'using namespace std' in s* + toolkitJulien Nabet
2021-06-28loplugin:indentation improve checks for brace alignmentNoel Grandin
2021-04-07Updated README.md files to represent current code / use Markdown formatHossein
2020-11-19tdf#123936 Formatting files in module soltools with clang-formatPhilipp Hofer
2020-04-16cid#1462267 Infinite loopCaolán McNamara
2020-04-15loplugin:buriedassign in sfx2..sotNoel Grandin
2020-03-12Revert "loplugin:constfields in smoketest..sot"Noel Grandin
2020-01-25tdf#130137 Replace remaining uses of WNT define checks with _WIN32A_GAN
2019-11-18cid#1448469 Out-of-bounds accessCaolán McNamara