Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/danielburger1337/steam-openid-php

A simple, modern and modular OpenID client library implementation for Steam.
https://github.com/danielburger1337/steam-openid-php

php php-8 php-library steam steam-openid

Last synced: about 1 month ago
JSON representation

A simple, modern and modular OpenID client library implementation for Steam.

Awesome Lists containing this project

README

        

[![PHPUnit](https://github.com/danielburger1337/steam-openid-php/actions/workflows/phpunit.yml/badge.svg)](https://github.com/danielburger1337/steam-openid-php/actions/workflows/phpunit.yml)
[![PHPStan](https://github.com/danielburger1337/steam-openid-php/actions/workflows/phpstan.yml/badge.svg)](https://github.com/danielburger1337/steam-openid-php/actions/workflows/phpstan.yml)

# Steam OpenID Authentication Library

A simple, modern and modular OpenID client library implementation for Steam.

## Why this library?

This library aims to make the proccess of OpenID authentication with Steam as painless as possible.

As you may know, there are already a couple of libraries that do more or less the exact same thing as this library:

- https://github.com/xPaw/SteamOpenID.php
- https://github.com/SmItH197/SteamAuthentication

But as you may know or will see, those libraries are exactly what people hate about PHP. They do not use any real coding or [php-fig (psr)](https://www.php-fig.org/) standards, are not modular (they require cURL) and are generally a pain to work with because they do not throw exceptions.

## How To Use

```php
constructCheckIdSetupUri());

// ... in Callback.php (or your callback controller method)

use danielburger1337\SteamOpenId\Exception\ExceptionInterface;

// When steam redirects the user back to your "return_to" URI,
// verify the provided parameters in the query string.

try {
// This method returns the users 64-bit SteamID.
$steamId = $openId->verifyCallback($_GET);
} catch (ExceptionInterface $e) {
exit(var_dump('Failed to verify steam authentication :('));
}
```

### Terms & Conditions

Before using this library, please read and accept Valve's terms and conditions [here](https://steamcommunity.com/dev).