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-01-12 20:25:51 +13:00
Copyright (C) 2008-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)
namespace UploadersLib
{
2014-02-15 05:54:10 +13:00
public static class APIKeys
2013-11-03 23:53:49 +13:00
{
// Image Uploaders
2014-02-15 06:10:23 +13:00
public const string ImageShackKey = "";
public const string TinyPicID = "";
public const string TinyPicKey = "";
public const string ImgurClientID = "";
public const string ImgurClientSecret = "";
public const string FlickrKey = "";
public const string FlickrSecret = "";
public const string PhotobucketConsumerKey = "";
public const string PhotobucketConsumerSecret = "";
public const string UploadScreenshotKey = "";
public const string ImageBamKey = "";
public const string ImageBamSecret = "";
public const string TwitsnapsKey = "";
public const string TwitPicKey = "";
2013-11-03 23:53:49 +13:00
// File Uploaders
2014-02-15 06:10:23 +13:00
public const string DropboxConsumerKey = "";
public const string DropboxConsumerSecret = "";
public const string MinusConsumerKey = "";
public const string MinusConsumerSecret = "";
public const string BoxKey = "";
public const string BoxClientID = "";
public const string BoxClientSecret = "";
public const string SendSpaceKey = "";
public const string DropIOKey = "";
public const string Ge_ttKey = "";
public const string JiraConsumerKey = ""; // Random generated string
2013-11-03 23:53:49 +13:00
// Text Uploaders
2014-02-15 06:10:23 +13:00
public const string PastebinKey = "";
public const string PastebinCaKey = "";
public const string GistId = "";
public const string GistSecret = "";
2013-11-03 23:53:49 +13:00
// URL Shorteners
2014-02-15 06:10:23 +13:00
public const string BitlyClientID = "";
public const string BitlyClientSecret = "";
2013-11-03 23:53:49 +13:00
// Other Services
2014-02-15 06:10:23 +13:00
public const string GoogleClientID = "";
public const string GoogleClientSecret = "";
public const string GoogleAPIKey = "";
public const string TwitterConsumerKey = "";
public const string TwitterConsumerSecret = "";
public const string PicnikKey = "";
2013-11-03 23:53:49 +13:00
}
}