Hi all,
I'm trying to build an auth adapter for Facebook. The problem is they
require
a validation with POST data to an url with GET parameters. I'd like to do
this
(extremely simplified):

$client = new Zend_Rest_Client('facebook.com');
$path = 'restservice.php?method=facebook.auth.getSession';
$post = array('token' => '1234567890');
$client->restPost($path, $post);

The Zend_Uri_Http throws an exception because $path is not valid. How am I
able to perform such a request?

Thanks in advance,
Jurian
-- 
Jurian Sluiman
CTO Soflomo V.O.F.
http://soflomo.com

Reply via email to