-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SteamID to WebAPI #14
base: master
Are you sure you want to change the base?
Conversation
Correcting spelling.
Using WebAPI for almost everything! * Changed SteamID structure in favor of matching to WebAPI's data structure. ** User Bans info implimented as SteamID->GetPlayerBans structure. ** Player data implimented as SteamID->GetPlayerSummeries strcutre * New unified function getAvatarUrl() for profile images (old ones still exist). * NEW isCommunityBanned() function to return Community ban status. * Friends using WebAPI. However, strcture slightly changed. TODO: Impliment MostPlayedGames, Groups, Owned Games, Play times,
* Better Error handling of initual SteamID load. * Groups now works with WebAPI.
Added optional function to SteamGame objects to poll game Schema.
// Raw structure dump | ||
$this->GetPlayerSummaries = $profile; | ||
$this->GetPlayerBans = $profileBans; | ||
//$this->GetUserGroupList = $proflieGroups; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please don't commit commented code.
I decided to cherry-pick the typo fixes and HTTPS change for now. Additionally, I added an optional switch to fallback to plain HTTP. You might want to rebase on current Thanks so far. |
Use WebApi::setSecure() to enable or disable HTTPS. Default is enabled.
Did you close this by mistake or is there a specific reason? |
Mistake. :( |
This prevents an error when used without sockets extension.
As requested by @koraktor.
* Matches the WebAPI function name, while returning the Condenser group structure. * Also gave the array name of the Group ID for better searching.
Now using the WebAPI, not the XML version.
Would you mind rebasing this on |
Using WebAPI for almost everything in SteamAPI!
structure.
still exist).