Hello
So I’m in the current process of building a launcher for my game. One of the systems I need is login. How the login will work on a general base is the java app will somehow send the username and password encoded (I already know how to do the encoding) to the Wordpress front end and request a login using the username and password. From there WordPress does its normal way of logging in. But instead of returning the website it needs to goto, I would like it to return if the user was accepted or not.
So I would be guessing a plugin on the wordpress side will be required so it can just return true or false. Next will be java, I need a way to send a username and password to wordpress. Though wordpress doesn’t use java, it uses PHP. So is there I can request a php query inside java.
I have looked at XMLRPC but I can’t find a way for just to login to wordpress from that, it seems that you have to use a function to do something to test to see if you can login. If someone knows how to just do login, I wouldn’t mind that either.
Thanks, Sam