ShareX/ShareX.UploadersLib/APIKeys/APIKeys.cs

77 lines
3 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
2014-05-13 21:06:40 +12:00
Copyright (C) 2007-2014 ShareX Developers
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
{
2014-02-17 05:38:51 +13:00
public static partial class APIKeys
2013-11-03 23:53:49 +13:00
{
// Image Uploaders
2014-02-17 05:38:51 +13:00
public static string ImageShackKey = "";
public static string TinyPicID = "";
public static string TinyPicKey = "";
public static string ImgurClientID = "";
public static string ImgurClientSecret = "";
public static string FlickrKey = "";
public static string FlickrSecret = "";
public static string PhotobucketConsumerKey = "";
public static string PhotobucketConsumerSecret = "";
public static string TwitsnapsKey = "";
public static string TwitPicKey = "";
2013-11-03 23:53:49 +13:00
// File Uploaders
2014-02-17 05:38:51 +13:00
public static string DropboxConsumerKey = "";
public static string DropboxConsumerSecret = "";
2014-06-06 06:19:45 +12:00
public static string CopyConsumerKey = "";
public static string CopyConsumerSecret = "";
2014-02-17 05:38:51 +13:00
public static string MinusConsumerKey = "";
public static string MinusConsumerSecret = "";
public static string BoxClientID = "";
public static string BoxClientSecret = "";
public static string SendSpaceKey = "";
public static string Ge_ttKey = "";
public static string JiraConsumerKey = "";
2014-07-23 10:32:14 +12:00
public static string MediaFireAppId = "";
public static string MediaFireApiKey = "";
2014-08-09 12:01:10 +12:00
public static string OneDriveClientID = "";
public static string OneDriveClientSecret = "";
2013-11-03 23:53:49 +13:00
// Text Uploaders
2014-02-17 05:38:51 +13:00
public static string PastebinKey = "";
public static string PastebinCaKey = "";
2014-05-02 01:52:46 +12:00
public static string GitHubID = "";
public static string GitHubSecret = "";
2013-11-03 23:53:49 +13:00
// URL Shorteners
2014-02-17 05:38:51 +13:00
public static string BitlyClientID = "";
public static string BitlyClientSecret = "";
2013-11-03 23:53:49 +13:00
// Other Services
2014-02-17 05:38:51 +13:00
public static string GoogleAPIKey = "";
public static string GoogleClientID = "";
public static string GoogleClientSecret = "";
public static string TwitterConsumerKey = "";
public static string TwitterConsumerSecret = "";
2013-11-03 23:53:49 +13:00
}
}