ShareX/UploadersLib/APIKeys/APIKeys.cs
2014-02-14 19:10:23 +02:00

77 lines
3 KiB
C#

#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
Copyright (C) 2008-2014 ShareX Developers
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
{
public static class APIKeys
{
// Image Uploaders
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 = "";
// File Uploaders
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
// Text Uploaders
public const string PastebinKey = "";
public const string PastebinCaKey = "";
public const string GistId = "";
public const string GistSecret = "";
// URL Shorteners
public const string BitlyClientID = "";
public const string BitlyClientSecret = "";
// Other Services
public const string GoogleClientID = "";
public const string GoogleClientSecret = "";
public const string GoogleAPIKey = "";
public const string TwitterConsumerKey = "";
public const string TwitterConsumerSecret = "";
public const string PicnikKey = "";
}
}