2

Hi I am trying to develop an app that could post to wordpress from my website…..is there any way that I can use something like oauth to authenticate visitors on wordpress and then post to the wordpress.com blog ?

Blackbam
  • 17,496
  • 26
  • 97
  • 150
user840175
  • 57
  • 1
  • 6

1 Answers1

4

You can do this through XML-RPC interface to wordpress.com, but your users must provide their login information, such as Flickr.

You should check the corresponding class in CI.

Alfonso Rubalcava
  • 2,237
  • 17
  • 26
  • hey do u have any idea how to enable/install xml-rpc in php. I am looking at my phpinfo and I cannot see it .... thanks for the help – user840175 Aug 22 '11 at 02:46
  • Codeigniter has a class for working with XML-RPC. Their only dependence is xml parser, which is by default since PHP 4, so you do not have to install anything. Just read the links, to begin implementation. – Alfonso Rubalcava Aug 22 '11 at 03:01