• I am using this combined with the XML RPC client: http://letrunghieu.github.io/wordpress-xmlrpc-client/

    I have set my namespace in the wordpress settings to “kyle”

    When trying to make a call, I am getting the following response:

    [faultString] => server error. requested method kyle.getPosts does not exist.

    But if I change “kyle” to “wp” it works fine.

    I am trying to integrate XML RPC in to another website so that we can create users, using “kyle.create_user” provides the same error.

    Am I missing something? Or is this plugin broken with WordPress 4.0?

    https://wordpress.org/plugins/extended-xml-rpc-api/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author michaelgrosser

    (@michaelgrosser)

    Hi,
    I have not yet tested with WordPress 4.0. It’s possible it’s a conflict with something 4.0-related.

    I will be testing for 4.0 compatibility in the near future.

    Thread Starter Kyle R

    (@kyle-r)

    Any idea when you will get chance to update or if I can pay you to fix it? I’m really looking to create users via the XML RPC.

    b0rman

    (@b0rman)

    4.1 same problem 🙁

    b0rman

    (@b0rman)

    My bad 🙂

    Read readme.txt 🙂
    Correct usage:
    $data = array($wp_username, $wp_password,’wp_create_user’, array( ‘tester’, ‘123123’, ‘test@test.ru’ ));
    $client->query(‘eapi.callWpMethod’, $data);
    $user_id = $client->getResponse();

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘requested method X does not exist.’ is closed to new replies.