Skip to content

Instantly share code, notes, and snippets.

@TobiasBerg
Created January 22, 2021 12:23
Show Gist options
  • Save TobiasBerg/b0e7e04ba46a082ad9afbbaa5712176b to your computer and use it in GitHub Desktop.
Save TobiasBerg/b0e7e04ba46a082ad9afbbaa5712176b to your computer and use it in GitHub Desktop.
C Get Player Storage Example
var client = new RestClient("https://api.lootlocker.io/game/v1/player/storage");
var request = new RestRequest(Method.GET);
request.AddHeader("x-session-token", "your session token");
IRestResponse response = client.Execute(request);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment