This repository was archived by the owner on Apr 9, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +4
-12
lines changed Expand file tree Collapse file tree 5 files changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ public final class AESModel {
66
77 public String build ;
88 public String mainKey ;
9- public DynamicPak [] dynamicPaks ;
9+ public DynamicPak [] dynamicKeys ;
1010 public Date updated ;
1111
1212 public final static class DynamicPak {
Original file line number Diff line number Diff line change 66import com .thoo .api .utils .HttpUtils ;
77import org .jetbrains .annotations .NotNull ;
88
9- public class StatsSearcherId extends StatsSearcher {
9+ public final class StatsSearcherId extends StatsSearcher {
1010
1111 private String accountId ;
1212
Original file line number Diff line number Diff line change 22
33import com .thoo .api .FortniteAPI ;
44import com .thoo .api .FortniteAPIBuilder ;
5- import com .thoo .api .enums .ImageType ;
65import com .thoo .api .enums .Language ;
7- import com .thoo .api .enums .TimeWindow ;
8- import com .thoo .api .model .AccountType ;
9- import com .thoo .api .model .BaseModel ;
10- import com .thoo .api .model .StatsModel ;
11- import com .thoo .api .objects .FortniteResponse ;
6+ import com .thoo .api .utils .HttpUtils ;
127
138public final class Example {
149
@@ -20,10 +15,7 @@ private void main() {
2015
2116 private void init () {
2217 this .api = new FortniteAPIBuilder ().setKey ("" ).setDefaultLanguage (Language .EN ).build ();
23- FortniteResponse <BaseModel <StatsModel >> response = api .getStatsEndpoint ().getStatsByID ("" )
24- .setImageType (ImageType .ALL ).setAccountType (AccountType .PC ).setTimeWindow (TimeWindow .LIFETIME ).send ();
25- StatsModel model = response .getModel ().data ;
26- System .out .println (model .battlePass .level );
18+ System .out .println (HttpUtils .gson .toJson (api .getAESEndpoint ().getAES ().getModel ().data ));
2719 }
2820
2921 public static void main (String [] args ) {
You can’t perform that action at this time.
0 commit comments