0
我不能讓API xmlrpc與瀏覽器鏡頭一起工作,它真的很煩人。 第一種方法 $ method ='nonces.challenge'; http://api.browsershots.org/xmlrpc/nonces.challenge/有沒有人有API與瀏覽器一起工作?
我該如何獲得它的意思是它似乎只是針對我的主機名。
的nonces.verifyUser說,它需要2個輸入和我使用
$params = array();
$params[username] = 'username';
$params[encrypted_password] = 'password';
$request = xmlrpc_encode_request ($method , $params);
echo "<pre>";
print_r($request);
echo "</pre>";
$context = stream_context_create(array('http' => array(
'method' => "POST",
'header' => "Content-Type: text/xml",
'content' => $request
)));
echo "<pre>";
print_r($context);
echo "</pre>";
$file = file_get_contents($browser_shots_url, false, $context);
print_r($file);
它說我缺少一個。我哪裏錯了?
哦,我沒有。感謝您的輸入 - 我發現另一個網站給了我想要的結果。 – 2010-09-20 11:53:27
是一個很好的http://www.shrinktheweb.com/auth/stw-lobby,只要你不太經常ping它,它就是免費的。 感謝您的輸入 – 2010-09-20 11:54:08