Welcome Guest, Not a member yet? Register   Sign In
Twitter and XMLRPC
#1

[eluser]bagwaa[/eluser]
Hi There,

I am attempting to-do something very simple, or so I thought - but I am having a problem, and I have a feeling this is something on my own part that I am doing wrong.

Basically, I want to learn about using API's and connecting to external services such as digg and twitter using the xmlrpc lib in CI.

I have created a basic controller and as I understood it, this would allow me to connect, is there anything strikingly wrong with this?

Code:
$server_url = "http://twitter.com/users/show/bagwaa.xml";

$this->xmlrpc->set_debug(TRUE);
$this->xmlrpc->server($server_url, 80);
$this->xmlrpc->method('users/show');

$request = array('http' => 'GET');
$this->xmlrpc->request($request);

if (!$this->xmlrpc->send_request()) {
    $data["response"] = $this->xmlrpc->display_error();
} else {
    $data["response"] = $this->xmlrpc->display_response();
}

Apologies if this seems obvious but I just can't see the problem, and if you can point me in the right direction to figure this out it would be appreciated.

bagwaa


Messages In This Thread
Twitter and XMLRPC - by El Forum - 05-29-2009, 01:21 PM
Twitter and XMLRPC - by El Forum - 05-29-2009, 02:43 PM



Theme © iAndrew 2016 - Forum software by © MyBB