-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTest_Keys_Template.ts
34 lines (31 loc) · 1.65 KB
/
Test_Keys_Template.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Fill in the details, and place in %SolutionDir%\Test\Keys.ts
module CodevoidTests {
// Twitter Tokens & IDs. Replace with tokens & IDs
// that are issued to you from Twitters developer
// portal: https://developer.twitter.com/en/docs/developer-portal/overview
export var TWITTER_CLIENT_ID: string = "PLACEHOLDER";
export var TWITTER_CLIENT_SECRET: string = "PLACEHOLDER";
export var TWITTER_ACCESS_TOKEN: string = "PLACEHOLDER";
export var TWITTER_ACCESS_TOKEN_SECRET: string = "PLACEHOLDER";
// Instapaper Tokens. Replace with tokens & IDs
// that are issued to you for Instapapers developer
// access: https://www.instapaper.com/main/request_oauth_consumer_token
export var INSTAPAPER_ACCOUNT: string = "PLACEHOLDER";
export var INSTAPAPER_PASSWORD: string = "PLACEHOLDER";
export var INSTAPAPER_ACCOUNT_ID: number = -1;
export var INSTAPAPER_CLIENT_ID = "PLACEHOLDER";
export var INSTAPAPER_CLIENT_SECRET = "PLACEHOLDER";
// These are for a specific account login instance, and
// need to be captured by following the OAuth flow. The
// easiest way is to run canGetAccessToken in InstapaperApiTests
// and look at the results to capture specific values.
export var INSTAPAPER_TOKEN = "PLACEHOLDER";
export var INSTAPAPER_TOKEN_SECRET = "PLACEHOLDER";
}
module Codevoid.Storyvoid {
// Instapaper Tokens. Replace with tokens & IDs
// that are issued to you for Instapapers developer
// access: https://www.instapaper.com/main/request_oauth_consumer_token
export var INSTAPAPER_CLIENT_ID: string = "PLACEHOLDER";
export var INSTAPAPER_CLIENT_SECRET: string = "PLACEHOLDER";
}