-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathkeys.r
31 lines (25 loc) · 1.45 KB
/
keys.r
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
# keys.R -- YOUR PRIVATE KEYS - DO NOT SHARE
# this is not the 'pro' way to store keys, but it's low barrier to entry for many newbs http://blog.revolutionanalytics.com/2015/11/how-to-store-and-use-authentication-details-with-r.html
# The watson.keys.load will let you modify this if you like
# ALCHEMY Language - AUTHENTICATION / CREDENTIALS - Platinum
username_password_ALCH <- "xxxxxxxxxxaaa160dd1da4d8126c6b285"
# TONE ANALYZER - AUTHENTICATION AND CREDENTIALS - GA
username_TON = "xxxxxxxxx-7454-4721-b829-bcd051ef7d2d"
password_TON = "xxxxxxxxx"
username_password_TON = paste(username_TON,":",password_TON)
# PERSONALITY INSIGHTS (PI) - AUTHENTICATION AND CREDENTIALS - Platinum
username_PI = "xxxxxxxxx-e3d8-4dfb-86aa-d6ab31ee2d2c"
password_PI = "xxxxxxxxx"
username_password_PI = paste(username_PI,":",password_PI)
# NLC CREDENTIALS - AUTHENTICATION AND CREDENTIALS - Platinum
username_NLC = "xxxxxxxxx-e8cd-4dbf-816b-6a7ac1f2dd71"
password_NLC = "xxxxxxxxx"
username_password_NLC = paste(username_NLC,":",password_NLC,sep="")
# STT - Speech-To-Text (STT) - RED - AUTHENTICATION AND CREDENTIALS
username_STT <-"xxxxxxxxx-b5bb-406c-9cc3-7cb964fb614f"
password_STT <- "xxxxxxxxx"
username_password_STT = paste(username_STT,":",password_STT,sep="")
# TTS - TEXT TO SPEECH (TTS) - RED - AUTHENTICATION AND CREDENTIALS
username_TTS <-"xxxxxxxxx-48c4-486e-98de-174388b22b17"
password_TTS <- "xxxxxxxxx"
username_password_TTS = paste(username_TTS,":",password_TTS,sep="")