Skip to content

xzso3/SteamAuth

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SteamAuth

Sign in through Steam library for PHP.

This is only intended for basic webpages. For bigger projects use this only as an example to build your own.

Features

  • Callbacks for login, logout, and login failure
  • Easy login
  • POST Logout

Requires

  • PHP >= 5.4

Simple example

include("SteamAuth/SteamAuth.class.php");
$auth = new SteamAuth();
$auth->Init();

if(isset($_POST['logout']))
{
	$auth->Logout();
}

if($auth->IsUserLoggedIn()) 
{
	echo "Your SteamID is " . $auth->SteamID . "<br/>";
	echo "<form method=\"POST\"><input type=\"submit\" name=\"logout\" value=\"Logout\" /></form>";
} 
else 
{
	echo "<a href=\"" . $auth->GetLoginURL() . "\"><img src=\"assets/sits_large_noborder.png\" alt=\"Sign in through Steam\" /></a>";
}

About

Example sign in through steam in PHP

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%