Meteor supports login through twitter, facebook, github, google plus through its account-{{service-name}} packages. How can I implement a login authentication for wordpress?
Stephan de Vries
Full stack developer, enthusiastic about new technologies.
You could probably start with this -
http://www.parorrey.com/solutions/json-api-auth/
A plugin for Wordpress that exposes it's Auth functions.
As for the Meteor side - I can't speak to that. But I'm sure you could make an http call to it?
There's a package for that called
accounts-wordpresson Atmosphere. However in the package readme it says:So it's up to you to decide whether or not you want to use it.
You could however create your own package. This is relatively simple. Take a look at the other accounts-* packages like accounts-twitter that uses the twitter package. Wordpress provides you with API documentation that you can use while creating the package.
Hope that answers your question!