Skip to content

Instantly share code, notes, and snippets.

@nullbus
nullbus / 0.README.md
Created January 8, 2026 13:29
EOS token retrieval example using Steamworks auth ticket

[UE5] EOS token retrieval example using Steamworks auth ticket

This example shows concepts below:

  • [UE5] how to authenticate EOS with external auth token. For this case, Steamworks auth ticket is used.
  • [UE5] how to generate EOS JWT
  • [Typescript] how to verify EOS JWT

To verify JWT, you need to install extra typescript libraries:

npm install jsonwebtoken jwks-rsa @types/jsonwebtoken @types/jwks-rsa
// +build ignore
package main
import (
"bytes"
"flag"
"io"
"io/ioutil"
"log"
"os"
@nullbus
nullbus / FASTBuild.cs
Last active February 12, 2020 08:39
modification of https://github.com/liamkf/Unreal_FASTBuild to make work on 4.22
// Copyright 2018 Yassine Riahi and Liam Flookes. Provided under a MIT License, see license file on github.
// Used to generate a fastbuild .bff file from UnrealBuildTool to allow caching and distributed builds.
// Tested with Windows 10, Visual Studio 2015/2017, Unreal Engine 4.19.1, FastBuild v0.95
// Durango is fully supported (Compiles with VS2015).
// Orbis will likely require some changes.
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Diagnostics;
@nullbus
nullbus / copyright_fixer.go
Created August 20, 2018 10:15
UE4 Default Copyright Fixer