Skip to content

Commit

Permalink
2024
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianMichael committed Jan 1, 2024
1 parent e682544 commit 88bc2e2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of WaybackAuthLib - https://github.com/FlorianMichael/WaybackAuthLib
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
* Copyright (C) 2023-2024 FlorianMichael/EnZaXD <[email protected]> and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -22,4 +22,5 @@ public class InvalidCredentialsException extends InvalidRequestException {
public InvalidCredentialsException(final String message) {
super(message);
}

}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of WaybackAuthLib - https://github.com/FlorianMichael/WaybackAuthLib
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
* Copyright (C) 2023-2024 FlorianMichael/EnZaXD <[email protected]> and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -38,4 +38,5 @@ public InvalidRequestException(String error, String errorMessage, String cause)
this.errorMessage = errorMessage;
this.cause = cause;
}

}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of WaybackAuthLib - https://github.com/FlorianMichael/WaybackAuthLib
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
* Copyright (C) 2023-2024 FlorianMichael/EnZaXD <[email protected]> and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -26,6 +26,7 @@
import java.util.*;

public class WaybackAuthLib {

public final static String YGG_PROD = "https://authserver.mojang.com/";

private final static String ROUTE_AUTHENTICATE = "authenticate";
Expand Down Expand Up @@ -362,4 +363,5 @@ private static class AuthenticateRefreshResponse extends Response {
public GameProfile[] availableProfiles;
public User user;
}

}

0 comments on commit 88bc2e2

Please sign in to comment.