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

https://github.com/hexer10/steam_login

Library to authenticate users with Steam OpenID
https://github.com/hexer10/steam_login

dart login openid steam

Last synced: 6 months ago
JSON representation

Library to authenticate users with Steam OpenID

Awesome Lists containing this project

README

          

Library to authenticate users with Steam OpenID and functions to call steam WebAPI.

## Get Started

Add your library to `pubspec.yaml`
```yaml
depedencies:
steam_login: ^1.0.0
```

and import it in your code and initialize the Object using the current HttpRequest.
```dart
import 'package:steam_login/steam_login.dart';

OpenId openId = OpenId(request);
```

See `example/steam_login_example.dart` for a full example!

## Features and bugs

Please file feature requests and bugs at the [issue tracker][tracker].

[tracker]: https://github.com/Hexer10/steam_login/issues

This is heavily based on [steam_go](https://github.com/solovev/steam_go).