{"id":13704089,"url":"https://github.com/Longi94/JavaSteam","last_synced_at":"2025-05-05T09:33:04.742Z","repository":{"id":37934011,"uuid":"122125610","full_name":"Longi94/JavaSteam","owner":"Longi94","description":"Java library that provides an interface to directly interact with Valve's Steam servers.","archived":false,"fork":false,"pushed_at":"2024-11-05T18:50:12.000Z","size":3511,"stargazers_count":95,"open_issues_count":7,"forks_count":20,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-11-05T19:41:35.515Z","etag":null,"topics":["java","networking","protobuf","steam","steamkit2","valve"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Longi94.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-02-19T21:57:27.000Z","updated_at":"2024-11-05T18:50:17.000Z","dependencies_parsed_at":"2024-01-03T06:52:14.516Z","dependency_job_id":"0d9f27f2-7619-4f8b-8186-374a7c3a8c07","html_url":"https://github.com/Longi94/JavaSteam","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Longi94%2FJavaSteam","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Longi94%2FJavaSteam/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Longi94%2FJavaSteam/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Longi94%2FJavaSteam/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Longi94","download_url":"https://codeload.github.com/Longi94/JavaSteam/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224439731,"owners_count":17311512,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","networking","protobuf","steam","steamkit2","valve"],"created_at":"2024-08-02T21:01:04.075Z","updated_at":"2025-05-05T09:33:04.733Z","avatar_url":"https://github.com/Longi94.png","language":"Java","funding_links":[],"categories":["Packages"],"sub_categories":["Java"],"readme":"# JavaSteam\n[![Java CI/CD](https://github.com/Longi94/JavaSteam/actions/workflows/javasteam-build-push.yml/badge.svg)](https://github.com/Longi94/JavaSteam/actions/workflows/javasteam-build.yml)\n[![Maven Central](https://img.shields.io/maven-central/v/in.dragonbra/javasteam)](https://mvnrepository.com/artifact/in.dragonbra/javasteam)\n[![Discord](https://img.shields.io/discord/420907597906968586.svg)](https://discord.gg/8F2JuTu)\n\nJava port of [SteamKit2](https://github.com/SteamRE/SteamKit). JavaSteam targets Java 11.\n\n## Download\n\nLatest version is available through [Maven](https://mvnrepository.com/artifact/in.dragonbra/javasteam)\n\nIf you get a `java.security.InvalidKeyException: Illegal key size or default parameters` exception when trying to encrypt a message you need to download the [Unlimited Strength Jurisdiction Policy Files](http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html) and place them under `${java.home}/jre/lib/security/`. See [this stackoverflow question](https://stackoverflow.com/questions/6481627/java-security-illegal-key-size-or-default-parameters).\n\n**1. Add the repository to your build.**\n\nGradle\n```groovy\nrepositories {\n    mavenCentral()\n}\n```\n\nMaven\n```xml\n\u003crepository\u003e\n  \u003cid\u003ecentral\u003c/id\u003e\n  \u003curl\u003ehttps://repo.maven.apache.org/maven2\u003c/url\u003e\n\u003c/repository\u003e\n```\n\n**2. Add the JavaSteam dependency to your project.**\n\nGradle\n```groovy\nimplementation 'in.dragonbra:javasteam:x.y.z'\n```\n\nMaven\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ein.dragonbra\u003c/groupId\u003e\n    \u003cartifactId\u003ejavasteam\u003c/artifactId\u003e\n    \u003cversion\u003ex.y.z\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n**3. Add the appropriate cryptography dependency to your project. JavaSteam depends on this.**\n\n[Android (Deprecated) | Spongy Castle](https://mvnrepository.com/artifact/com.madgag.spongycastle/prov)\n\n[Android and Non-Android | Bouncy Castle](https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk18on)\n\n**4. (Optional) Working with protobufs.**\n\nIf you plan on working with protobuf builders directly to perform actions a handler doesn't support, you will need to add the protobuf-java dependency.\n\nNote: To eliminate any errors or warnings, you should try and match the same version JavaSteam uses.\u003cbr\u003eYou can find the latest version being used [here](https://github.com/Longi94/JavaSteam/blob/master/gradle/libs.versions.toml).\n\n[Protobuf Java](https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java)\n\n## Getting Started\n\nYou can head to the very short [Getting Started](https://github.com/Longi94/JavaSteam/wiki/Getting-started) page or take a look at the [samples](https://github.com/Longi94/JavaSteam/tree/master/javasteam-samples/src/main/java/in/dragonbra/javasteamsamples) to get you started with using this library.\n\nThere some [open-source projects](https://github.com/Longi94/JavaSteam/wiki/Samples) too you can check out.\n\nThe [wiki](https://github.com/Longi94/JavaSteam/wiki) may also be useful to check out for other info.\n\n## Build\n\nFull build:\u003cbr\u003e\n\n```./gradlew build -x signMavenJavaPublication```\n\nGenerated classes:\u003cbr\u003e\n\n```./gradlew generateProto generateSteamLanguage generateProjectVersion```\n\n## Contributing\n\nContributions to the repository are always welcome! Checkout the [contribution guidelines](CONTRIBUTING.md) to get started.\n\n## Other\n\nJoin the [discord server](https://discord.gg/8F2JuTu) if you have any questions related or unrelated to this repo or just want to chat!\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FLongi94%2FJavaSteam","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FLongi94%2FJavaSteam","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FLongi94%2FJavaSteam/lists"}