Skip to content
This repository has been archived by the owner on Apr 16, 2019. It is now read-only.

Commit

Permalink
Added warning about demo keys
Browse files Browse the repository at this point in the history
  • Loading branch information
jimcortez committed May 24, 2012
1 parent 0e09ddb commit 9302488
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions examples/AppChatExample/AppChatExample.java
Expand Up @@ -53,6 +53,12 @@ public class AppChatExample {
public static String HOST = "localhost";
public static int PORT = 8099;
public static String APP_NAME = "AppChatExample";

/*** !!!!
* WARNING: These are demo keys and will only work on the simulator (ADK). For more informations about generating
* production keys, see http://developer.yahoo.com/connectedtv
*** !!!!
*/
public final static String APP_ID = "0xeTgF3c";
public final static String CONSUMER_KEY = "dj0yJmk9T1Y0MmVIWWEzWVc3JmQ9WVdrOU1IaGxWR2RHTTJNbWNHbzlNVEUzTkRFM09ERTJNZy0tJnM9Y29uc3VtZXJzZWNyZXQmeD0yNA--";
public final static String SECRET = "1b8f0feb4d8d468676293caa769e19958bf36843";
Expand Down
6 changes: 6 additions & 0 deletions examples/SimpleNavigationExample/SimpleExample.java
Expand Up @@ -51,6 +51,12 @@ public class SimpleExample {
public static String HOST = "localhost";
public static int PORT = 8099;
public static String APP_NAME = "SimpleExample";

/*** !!!!
* WARNING: These are demo keys and will only work on the simulator (ADK). For more informations about generating
* production keys, see http://developer.yahoo.com/connectedtv
*** !!!!
*/
public final static String APP_ID = "0xeTgF3c";
public final static String CONSUMER_KEY = "dj0yJmk9T1Y0MmVIWWEzWVc3JmQ9WVdrOU1IaGxWR2RHTTJNbWNHbzlNVEUzTkRFM09ERTJNZy0tJnM9Y29uc3VtZXJzZWNyZXQmeD0yNA--";
public final static String SECRET = "1b8f0feb4d8d468676293caa769e19958bf36843";
Expand Down
6 changes: 6 additions & 0 deletions examples/VideoListExample/VideoListExample.java
Expand Up @@ -54,6 +54,12 @@ public class VideoListExample {
public static String HOST = "localhost";
public static int PORT = 8099;
public static String APP_NAME = "SimpleExample";

/*** !!!!
* WARNING: These are demo keys and will only work on the simulator (ADK). For more informations about generating
* production keys, see http://developer.yahoo.com/connectedtv
*** !!!!
*/
public final static String APP_ID = "0xeTgF3c";
public final static String CONSUMER_KEY = "dj0yJmk9T1Y0MmVIWWEzWVc3JmQ9WVdrOU1IaGxWR2RHTTJNbWNHbzlNVEUzTkRFM09ERTJNZy0tJnM9Y29uc3VtZXJzZWNyZXQmeD0yNA--";
public final static String SECRET = "1b8f0feb4d8d468676293caa769e19958bf36843";
Expand Down

0 comments on commit 9302488

Please sign in to comment.