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

Checked that account exists #70

Merged
merged 3 commits into from
Apr 26, 2018
Merged

Conversation

RogerNoble
Copy link
Contributor

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the displayName.

qlaffont and others added 3 commits April 14, 2018 09:28
* Change Version

* MIT/VERSION (qlaffont#55)

* Change Version (qlaffont#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0
Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.
@RobertoGraham
Copy link
Contributor

Often when there's no displayName it means that the Fortnite account is not backed by an Epic Games account but by a PSN/XBL account. If the externalAuths key is present in a the account object you can try to find externalDisplayName in the externalAuths object. Here is my Java implementation:

EnhancedLeaderBoardEntry enhancedLeaderBoardEntry = new EnhancedLeaderBoardEntry();

Account matchingAccount = accounts.stream()
        .filter(account -> account.getId().equals(entry.getAccountId().replace("-", "")))
        .findFirst()
        .orElse(null);

if (matchingAccount != null) {
    String displayName = matchingAccount.getDisplayName();

    if (displayName == null) {
        List<ExternalAuth> externalAuths = new ArrayList<>(matchingAccount.getExternalAuths().values());

        if (externalAuths.size() > 0)
            displayName = externalAuths.get(0).getExternalDisplayName();
    }

    enhancedLeaderBoardEntry.setDisplayName(displayName);
}

enhancedLeaderBoardEntry.setWins(entry.getValue());
enhancedLeaderBoardEntry.setRank(entry.getRank());
enhancedLeaderBoardEntry.setAccountId(entry.getAccountId());

return enhancedLeaderBoardEntry;

@RogerNoble
Copy link
Contributor Author

@RobertoGraham I see. Do you happen to know the endpoint for getExternalAuths so I can add the implementation?

@RobertoGraham
Copy link
Contributor

The external auth objects are included in accounts returned by Endpoint.displayNameFromIds

[ {
  "id" : "4035ca150e3a447a8f95680d19ce0f7c",
  "displayName" : "Morrissh24",
  "externalAuths" : {
    "psn" : {
      "type" : "psn",
      "externalAuthId" : "7225186713796739299",
      "accountId" : "4035ca150e3a447a8f95680d19ce0f7c",
      "externalDisplayName" : "Morrissh24"
    }
  }
} ]

@qlaffont qlaffont changed the base branch from master to dev April 22, 2018 06:14
@qlaffont
Copy link
Owner

@RogerNoble did you finish your pull request ? Can i merge ?

@RogerNoble
Copy link
Contributor Author

@qlaffont Feel free if you are happy with the fix.

I have not had a chance to implement the suggestion from @RobertoGraham. However I usually prefer to keep PR's small so probably best addressed separately.

@qlaffont qlaffont merged commit 9fb47a1 into qlaffont:dev Apr 26, 2018
qlaffont added a commit that referenced this pull request May 1, 2018
* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0
qlaffont pushed a commit that referenced this pull request May 3, 2018
* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file

* Remove git tags
qlaffont added a commit that referenced this pull request May 3, 2018
* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file (#76)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file

* Remove git tags
qlaffont added a commit that referenced this pull request May 5, 2018
* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file (#76)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file

* Remove git tags

* New Token Capture Process
qlaffont pushed a commit that referenced this pull request May 7, 2018
* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix Git Merge Doc (#77)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file (#76)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file

* Remove git tags

* New Capture Process (#78)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file (#76)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file

* Remove git tags

* New Token Capture Process

* Update README.md

The original instructions do not tell user to select decrypt https traffic . You need to do this in order to see the token.
qlaffont added a commit that referenced this pull request May 7, 2018
* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file (#76)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file

* Remove git tags

* New Token Capture Process

* Update README.md (#81)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix Git Merge Doc (#77)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file (#76)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file

* Remove git tags

* New Capture Process (#78)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file (#76)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file

* Remove git tags

* New Token Capture Process

* Update README.md

The original instructions do not tell user to select decrypt https traffic . You need to do this in order to see the token.
qlaffont pushed a commit that referenced this pull request May 28, 2018
* Fix Reame.md (#82)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file (#76)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file

* Remove git tags

* New Token Capture Process

* Update README.md (#81)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix Git Merge Doc (#77)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file (#76)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file

* Remove git tags

* New Capture Process (#78)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file (#76)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file

* Remove git tags

* New Token Capture Process

* Update README.md

The original instructions do not tell user to select decrypt https traffic . You need to do this in order to see the token.

* Add timewindow param to statsBR endpoint

* Allow passing timeWindow for BR stats
qlaffont added a commit that referenced this pull request Jul 18, 2018
* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file (#76)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file

* Remove git tags

* New Token Capture Process

* Update README.md (#81)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix Git Merge Doc (#77)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file (#76)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file

* Remove git tags

* New Capture Process (#78)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file (#76)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file

* Remove git tags

* New Token Capture Process

* Update README.md

The original instructions do not tell user to select decrypt https traffic . You need to do this in order to see the token.

*  change Stats.convert to synchronous (#91)

* change Stats.convert to synchronous

* indentation

* Adds time window to stats endpoint (#89)

* Fix Reame.md (#82)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file (#76)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file

* Remove git tags

* New Token Capture Process

* Update README.md (#81)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix Git Merge Doc (#77)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file (#76)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file

* Remove git tags

* New Capture Process (#78)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file (#76)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* 2.11.0 (#73)

* Checked that account exists (#70)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Checked that account exists

Seems the account endpoint doesn't always return all the accounts. Added
a check to see it exists before attempting to get the `displayName`.

* Fix French language, Add more languages (#71)

* 2.9.0 (#63)

* Change Version

* MIT/VERSION (#55)

* Change Version (#53)

* ADD MIT LICENSE

* Add KillSession

* Gift, Logo Ranked

* 2.8.1

* Remove PVE (No Working Anymore)

* 2.9.0

* Fix French language, Add more languages

TODO: Convert Chinese & Japanese html entities to readable text.

* Remove the need to manually enter Client Launcher Token & Fortnite Token

* Revert "Remove the need to manually enter Client Launcher Token & Fortnite Token"

This reverts commit d81d9c2.

* Fix Commit

* 2.11.0

* Fix readme file

* Remove git tags

* New Token Capture Process

* Update README.md

The original instructions do not tell user to select decrypt https traffic . You need to do this in order to see the token.

* Add timewindow param to statsBR endpoint

* Allow passing timeWindow for BR stats

* Clean Code + 2.12

* Fixing issue with getStatsBRFromID that was returning undefined for username (#100)

* Fixing issue with getStatsBRFromID that was returning undefined for username

* Fixing typo in method

* Add Kill Function

* Fix Auth issue

* Try to fix Leaderboards

* v2.12.1

* Fix Kill

* v2.12.2
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants