Skip to content

Commit

Permalink
Add EDITME markers for replacing token - Haptic-Apps#3485
Browse files Browse the repository at this point in the history
  • Loading branch information
clach04 committed Jul 8, 2023
1 parent 43c7993 commit ca304ab
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/me/ccrama/redditslide/Activities/Login.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
* Created by ccrama on 5/27/2015.
*/
public class Login extends BaseActivityAnim {
private static final String CLIENT_ID = "KI2Nl9A_ouG9Qw";
private static final String REDIRECT_URL = "http://www.ccrama.me";
private static final String CLIENT_ID = "EDITME_TOKEN"; // EDITME replace with your app token generated at https://old.reddit.com/prefs/apps
private static final String REDIRECT_URL = "http://127.0.0.1/redirect"; // EDITME replace with your redirect uri entered at https://old.reddit.com/prefs/apps
Dialog d;
CaseInsensitiveArrayList subNames;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
* Created by ccrama on 5/27/2015.
*/
public class Reauthenticate extends BaseActivityAnim {
private static final String CLIENT_ID = "KI2Nl9A_ouG9Qw";
private static final String REDIRECT_URL = "http://www.ccrama.me";
private static final String CLIENT_ID = "EDITME_TOKEN"; // EDITME replace with your app token generated at https://old.reddit.com/prefs/apps
private static final String REDIRECT_URL = "http://127.0.0.1/redirect"; // EDITME replace with your redirect uri entered at https://old.reddit.com/prefs/apps

@Override
public void onCreate(Bundle savedInstance) {
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/me/ccrama/redditslide/Authentication.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
* Created by ccrama on 3/30/2015.
*/
public class Authentication {
private static final String CLIENT_ID = "KI2Nl9A_ouG9Qw";
private static final String REDIRECT_URL = "http://www.ccrama.me";
private static final String CLIENT_ID = "EDITME_TOKEN"; // EDITME replace with your app token generated at https://old.reddit.com/prefs/apps
private static final String REDIRECT_URL = "http://127.0.0.1/redirect"; // EDITME replace with your redirect uri entered at https://old.reddit.com/prefs/apps
public static boolean isLoggedIn;
public static RedditClient reddit;
public static LoggedInAccount me;
Expand Down

0 comments on commit ca304ab

Please sign in to comment.