ShareX/ShareX.UploadersLib/APIKeys/APIKeys.cs

67 lines
2.8 KiB
C#
Raw Normal View History

2013-11-03 23:53:49 +13:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
2024-01-03 12:57:14 +13:00
Copyright (c) 2007-2024 ShareX Team
2013-11-03 23:53:49 +13:00
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Optionally you can also view the license at <http://www.gnu.org/licenses/>.
*/
#endregion License Information (GPL v3)
2014-12-11 09:25:20 +13:00
namespace ShareX.UploadersLib
2013-11-03 23:53:49 +13:00
{
2018-02-14 04:04:53 +13:00
internal static partial class APIKeys
2013-11-03 23:53:49 +13:00
{
2018-02-14 04:04:53 +13:00
// Image uploaders
public static readonly string ImgurClientID = "";
public static readonly string ImgurClientSecret = "";
public static readonly string ImageShackKey = "";
public static readonly string FlickrKey = "";
public static readonly string FlickrSecret = "";
public static readonly string PhotobucketConsumerKey = "";
public static readonly string PhotobucketConsumerSecret = "";
2013-11-03 23:53:49 +13:00
2018-02-14 04:04:53 +13:00
// Text uploaders
public static readonly string PastebinKey = "";
public static readonly string GitHubID = "";
public static readonly string GitHubSecret = "";
public static readonly string Paste_eeApplicationKey = "";
2013-11-03 23:53:49 +13:00
2018-02-14 04:04:53 +13:00
// File uploaders
public static readonly string DropboxConsumerKey = "";
public static readonly string DropboxConsumerSecret = "";
public static readonly string BoxClientID = "";
public static readonly string BoxClientSecret = "";
public static readonly string SendSpaceKey = "";
public static readonly string JiraConsumerKey = "";
public static readonly string MediaFireAppId = "";
public static readonly string MediaFireApiKey = "";
public static readonly string OneDriveClientID = "";
public static readonly string OneDriveClientSecret = "";
2013-11-03 23:53:49 +13:00
2018-02-14 04:04:53 +13:00
// URL shorteners
public static readonly string BitlyClientID = "";
public static readonly string BitlyClientSecret = "";
2013-11-03 23:53:49 +13:00
2018-02-14 04:04:53 +13:00
// Other services
public static readonly string GoogleClientID = "";
public static readonly string GoogleClientSecret = "";
public static readonly string TwitterConsumerKey = "";
public static readonly string TwitterConsumerSecret = "";
2013-11-03 23:53:49 +13:00
}
}