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
- Host: GitHub
- URL: https://github.com/hexer10/steam_login
- Owner: Hexer10
- License: bsd-3-clause
- Created: 2019-01-01T17:28:37.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-05-19T21:05:34.000Z (over 4 years ago)
- Last Synced: 2024-03-15T11:10:53.562Z (almost 2 years ago)
- Topics: dart, login, openid, steam
- Language: Dart
- Homepage: https://pub.dartlang.org/packages/steam_login
- Size: 13.7 KB
- Stars: 17
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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).