OSDN Git Service

ウェブサイトのURLなどを修正
[opentween/open-tween.git] / OpenTween / ApplicationSettings.cs
1 // OpenTween - Client of Twitter
2 // Copyright (c) 2012      kim_upsilon (@kim_upsilon) <https://upsilo.net/~upsilon/>
3 // All rights reserved.
4 // 
5 // This file is part of OpenTween.
6 // 
7 // This program is free software; you can redistribute it and/or modify it
8 // under the terms of the GNU General public License as published by the Free
9 // Software Foundation; either version 3 of the License, or (at your option)
10 // any later version.
11 // 
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General public License
15 // for more details.
16 // 
17 // You should have received a copy of the GNU General public License along
18 // with this program. If not, see <http://www.gnu.org/licenses/>, or write to
19 // the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
20 // Boston, MA 02110-1301, USA.
21
22 using System;
23 using System.Collections.Generic;
24 using System.Linq;
25 using System.Text;
26
27 namespace OpenTween
28 {
29     internal sealed class ApplicationSettings
30     {
31         //=====================================================================
32         // フィードバック送信先
33         // 異常終了時などにエラーログ等とともに表示されます。
34         
35         /// <summary>
36         /// フィードバック送信先 (メール)
37         /// </summary>
38         public const string FeedbackEmailAddress = "kim.upsilon@bucyou.net";
39
40         /// <summary>
41         /// フィードバック送信先 (Twitter)
42         /// </summary>
43         public const string FeedbackTwitterName = "@kim_upsilon";
44
45         //=====================================================================
46         // Web サイト
47
48         /// <summary>
49         /// 「ヘルプ」メニューの「(アプリ名) ウェブサイト」クリック時に外部ブラウザで表示する URL
50         /// </summary>
51         public const string WebsiteUrl = "http://sourceforge.jp/projects/opentween/wiki/FrontPage";
52
53         /// <summary>
54         /// 「ヘルプ」メニューの「ショートカットキー一覧」クリック時に外部ブラウザで表示する URL
55         /// </summary>
56         /// <remarks>
57         /// Tween の Wiki ページのコンテンツはプロプライエタリなため転載不可
58         /// </remarks>
59         public const string ShortcutKeyUrl = "http://sourceforge.jp/projects/tween/wiki/%E3%82%B7%E3%83%A7%E3%83%BC%E3%83%88%E3%82%AB%E3%83%83%E3%83%88%E3%82%AD%E3%83%BC";
60
61         //=====================================================================
62         // Twitter
63         // https://dev.twitter.com/ から取得できます。
64
65         /// <summary>
66         /// Twitter コンシューマーキー
67         /// </summary>
68         public const string TwitterConsumerKey = "ST6eAABKDRKTqbN7pPo2A";
69         public const string TwitterConsumerSecret = "BJMEiivrXlqGESzdb8D0bvLfNYf3fifXRDMFjMogXg";
70
71         //=====================================================================
72         // Lockerz (旧Plixi)
73         // https://admin.plixi.com/Api.aspx から取得できます。
74
75         /// <summary>
76         /// Lockerz APIキー
77         /// </summary>
78         public const string LockerzApiKey = "91083b55-f8f9-4b91-a0b3-f999e2e45af2";
79
80         //=====================================================================
81         // Twitpic
82         // http://dev.twitpic.com/apps/new から取得できます。
83
84         /// <summary>
85         /// Twitpic APIキー
86         /// </summary>
87         public const string TwitpicApiKey = "bbc6449ceac87ef10c546e4a0ca06ef4";
88
89         //=====================================================================
90         // TwitVideo
91         // http://twitvideo.jp/api_forms/ から申請できます。
92
93         /// <summary>
94         /// TwitVideo コンシューマキー
95         /// </summary>
96         public const string TwitVideoConsumerKey = "7c4dc004a88e821b02c87a0cde2fa85c";
97
98         //=====================================================================
99         // yfrog
100         // http://stream.imageshack.us/api/ から取得できます。
101
102         /// <summary>
103         /// yfrog APIキー
104         /// </summary>
105         public const string YfrogApiKey = "HIDP42ZO6314ee2218e2995662bad5ae320c32f1";
106
107         //=====================================================================
108         // Bing
109         // http://www.bing.com/toolbox/bingdeveloper/ から取得できます。
110
111         /// <summary>
112         /// Bing AppId
113         /// </summary>
114         public const string BingAppId = "ABD3DFF1AB47F3899A2203E0C5873CBE3E14E8D3";
115
116         //=====================================================================
117         // Foursquare
118         // https://developer.foursquare.com/ から取得できます。
119
120         /// <summary>
121         /// Foursquare Client Id
122         /// </summary>
123         public const string FoursquareClientId = "5H3K5YQPT55DNQUFEOAJFNJA5D01ZJGO2ITEAJ3ASRIDONUB";
124
125         /// <summary>
126         /// Foursquare Client Secret
127         /// </summary>
128         public const string FoursquareClientSecret = "JFRHP1L451M3AEPF11UZLTIIUZCZTZRVHVOWB5TQ0AJOVPBB";
129
130         //=====================================================================
131         // bit.ly
132         // https://bitly.com/a/account から取得できます。
133
134         /// <summary>
135         /// bit.ly ログイン名
136         /// </summary>
137         public const string BitlyLoginId = "opentween";
138
139         /// <summary>
140         /// bit.ly APIキー
141         /// </summary>
142         public const string BitlyApiKey = "R_76319a25e2420b8d2c42e812fe177d8b";
143
144         //=====================================================================
145         // TINAMI
146         // http://www.tinami.com/api/ から取得できます。
147
148         /// <summary>
149         /// TINAMI APIキー
150         /// </summary>
151         public const string TINAMIApiKey = "4f48bb4858d36";
152     }
153 }