定制 kbkk/php-steam-auth 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

kbkk/php-steam-auth

最新稳定版本:0.2

Composer 安装命令:

composer require kbkk/php-steam-auth

包简介

Sign in users with Steam (stateless OpenID)

README 文档

README

Sign in users with Steam (stateless OpenID)
Probably needs to be rethinked

Requirements

  • PHP >=5.5
  • Guzzle 6

Composer

composer require kbkk/php-steam-auth

Usage example

$yourAppUrl = 'http://github.com/';
$returnTo = 'http://github.com/steam/verify';
$apiKey = 'Your Steam API Key';

$steamAuth = new \SteamAuth\SteamOpenId([
    'realm' => $yourAppUrl,
    'return_to' => $returnTo,
]);

$steamApi = new \SteamAuth\SteamApi($apiKey);

// redirect the user to steam sign in page
Redirect::url($steamAuth->getRedirectUrl());


// and verify the data when the user gets back to us
$steamid = $steamAuth->verifyAssertion($_GET); //false or steam id 64 as string

// fetch user profile
if($steamid)
    $user = $steamApi->getProfile($steamid);

// example output
array (size=17)
  'steamid' => string '76561197960435530' (length=17)
  'communityvisibilitystate' => int 3
  'profilestate' => int 1
  'personaname' => string 'Robin' (length=5)
  'lastlogoff' => int 1464428303
  'profileurl' => string 'http://steamcommunity.com/id/robinwalker/' (length=41)
  'avatar' => string 'https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/f1/f1dd60a188883caf82d0cbfccfe6aba0af1732d4.jpg' (length=116)
  'avatarmedium' => string 'https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/f1/f1dd60a188883caf82d0cbfccfe6aba0af1732d4_medium.jpg' (length=123)
  'avatarfull' => string 'https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/f1/f1dd60a188883caf82d0cbfccfe6aba0af1732d4_full.jpg' (length=121)
  'personastate' => int 0
  'realname' => string 'Robin Walker' (length=12)
  'primaryclanid' => string '103582791429521412' (length=18)
  'timecreated' => int 1063407589
  'personastateflags' => int 0
  'loccountrycode' => string 'US' (length=2)
  'locstatecode' => string 'WA' (length=2)
  'loccityid' => int 3961

统计信息

  • 总下载量: 13.53k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 2
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-09-16