MyBB Community Forums

Full Version: Software API
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
The website where I want to use MyBB already has a php/mySQL-based password facility so rather than have my users sign in twice, I would like to interface with MyBB's security system through an API. What I would like is a MyBB module -- call it api.php -- to which my php modules can issue the following commands:

create <userid><password>
signin <userid><password>
signout <userid>
delete <userid><password>

Is there a place where this could be done?
read this tutorial about intergrating ur site with mybboard systemSmile

ciao
You could also create a MyBB plugin and register all the login / logout, register, delete user, update user hooks.
Take a look at the file inc/integration.php. Maybe that's what you mean.