I saw some plugins use hash code to allow remote access to WP website. what is the logic? how it works? any plugin like this? I know XML-RPC uses user name and password, which i snot an option for me. any help on this? thanks
Can you be a bit more specific? I don't quite follow the question. What are you trying to accomplish here? Nigel
Oh. I think I follow.... https://wordpress.org/plugins/passwordless/ https://wordpress.org/plugins/passwordless-login/ If I had to check something out I would start here https://getclef.com/wordpress-login Nigel
It is a modern technique used to access wordpress account without any password needed. It is similar to XML-RPC only difference is it needed asynchronous code to decipher the code sent to client. In case of WordPress remote access..Users only need to feed email ID. The automatic controller will generate temporarily password and send link to user register email ID. Then user can logged in and access that link which will be active for 10 mins. That link send message to server that with valid code. If code is correct user can get logged in by the server. But it is little dangerous to use as it doesn't allow asynchronous code. I hope this helps. Thanks Ben Wilson