Rebuilding my guild website (PVP Guild on Mal'ganis Horde). Taking suggestions for what it should have. With the new battle.net oauth (allowing users to sign into my website using their battle.net as an application) I'm structuring how guild recruitment happens.
- Guild member signs into the website using their battle.net account, we have the user select their character via battle.net (check how i did vAmory.org - Hiding your account's identity with verification and safety.)
- Once inside the website they can sign up for various things using their character as a "profile". RBG's, Raids, random guild events that officers and authorized users create.
- Users can post their stream (twitch.tv/hitbox.tv)
- There will be a ladder page, just like battle.net but exclusive to guildies
- There will be forums (obviously), but coded from scratch with battle.net in mind.
This who project will be 99.99% open source. I will just hide my plans for security and SSL hashing. Let me know what you guys think. Other developers, contact me with ideas/collaboration
Link to sample of oauth operation with composer:
http://sniffingpickles.com/oauth/Armory.zip
In example.php set your config.
Code:
$config = array(
'region' => 'eu', // Set region
'api' => array(
'clientId' => '##',
'clientSecret' => '##',
'redirectUri' => '##', //must be HTTPS to this file
'scopes' => 'wow.profile'
)
);