From c036c6e53f5b676d5b023c9ecc1810248687b4ea Mon Sep 17 00:00:00 2001 From: Corwin Perren Date: Wed, 29 Nov 2017 11:25:11 -0800 Subject: [PATCH] Small changes --- .../1 - OAuth2 GAE/main.py | 4 ++-- .../java/com/example/corwinperren/httpoauth/MainActivity.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/OSU Coursework/CS 496 - Mobile and Cloud Software Development/1 - OAuth2 GAE/main.py b/OSU Coursework/CS 496 - Mobile and Cloud Software Development/1 - OAuth2 GAE/main.py index dc4a61a..a6a39de 100644 --- a/OSU Coursework/CS 496 - Mobile and Cloud Software Development/1 - OAuth2 GAE/main.py +++ b/OSU Coursework/CS 496 - Mobile and Cloud Software Development/1 - OAuth2 GAE/main.py @@ -7,8 +7,8 @@ import os from google.appengine.api import urlfetch import json -CLIENT_ID = "196055969432-4h2b1f38v094hs83ea7vafjul25vtf1a.apps.googleusercontent.com" -CLIENT_SECRET = "4rA3Oakv4jAJZCn1s6CN1kQn" +CLIENT_ID = "" +CLIENT_SECRET = "" GOOGLE_OAUTH_URI = "https://accounts.google.com/o/oauth2/v2/auth" GOOGLE_TOKEN_URI = "https://www.googleapis.com/oauth2/v4/token" diff --git a/OSU Coursework/CS 496 - Mobile and Cloud Software Development/5 - Android HTTP OAuth/java/com/example/corwinperren/httpoauth/MainActivity.java b/OSU Coursework/CS 496 - Mobile and Cloud Software Development/5 - Android HTTP OAuth/java/com/example/corwinperren/httpoauth/MainActivity.java index a934b31..55b7d3a 100644 --- a/OSU Coursework/CS 496 - Mobile and Cloud Software Development/5 - Android HTTP OAuth/java/com/example/corwinperren/httpoauth/MainActivity.java +++ b/OSU Coursework/CS 496 - Mobile and Cloud Software Development/5 - Android HTTP OAuth/java/com/example/corwinperren/httpoauth/MainActivity.java @@ -21,7 +21,7 @@ public class MainActivity extends AppCompatActivity { public static final String TAG = MainActivity.class.getSimpleName(); - private String mClientIDString = "106019908752-hkcvokpsq34vg0795mbhm42mbitqocub.apps.googleusercontent.com"; + private String mClientIDString = ""; public AuthorizationService mAuthorizationService;