Sayan Tapadar
Sayan Tapadar

Reputation: 97

Post comments to a wordpress website from an android app

I have a wordpress website, for which I was developing an android application. GETing data is pretty easy, as no authentication is required. But posting comments, liking a blog, these actions require authentication. Can someone guide me about how to social login (Google or facebook login) to authenticate and post comments or like a post, through the android application.

Upvotes: 0

Views: 420

Answers (1)

dc914337
dc914337

Reputation: 515

There is Rest API. You can use it to manipulate data without using web interface at all. Also there an article about using Rest API in Android

oauth is pretty simple. You just need to get a token(string) from Google or Facebook and you will use in Rest API.

Upvotes: 1

Related Questions