2012-11-24 23 views
0

我得到问题,让我的PHP脚本发布到博客使用客户端HTTP身份验证。发布到PHP的博主

我已经按照从https://developers.google.com/blogger/docs/1.0/developers_guide_php

这里的教程是我的代码:

require_once 'Zend/Loader.php'; 
Zend_Loader::loadClass('Zend_Gdata'); 
Zend_Loader::loadClass('Zend_Gdata_Query'); 
Zend_Loader::loadClass('Zend_Gdata_ClientLogin'); 

$user = 'myuserid'; 
$pass = 'mypassword'; 
$blogUrl = 'myblog.blogspot.com'; 
$service = 'blogger'; 

$gdClient = new Zend_Gdata($client); 
$blogID = getBlogId($gdClient, 'http://'.$blogUrl.'/feeds/posts/default'); 

$client = Zend_Gdata_ClientLogin::getHttpClient($user, $pass, $service, null, 
     Zend_Gdata_ClientLogin::DEFAULT_SOURCE, null, null, 
     Zend_Gdata_ClientLogin::CLIENTLOGIN_URI, 'GOOGLE'); 

function createPublishedPost($gdClient, $myBlogId, $title='Hello, world!', $content='I am blogging on the internet.') 
{ 
    $uri = 'https://www.blogger.com/feeds/' . $myBlogId . '/posts/default'; 
    echo $uri; // nothing wrongs here. 
    $entry = $gdClient->newEntry(); 
    $entry->title = $gdClient->newTitle($title); 
    $entry->content = $gdClient->newContent($content); 
    $entry->content->setType('text'); 

    $createdPost = $gdClient->insertEntry($entry, $uri); // I think the error is here. 
    $idText = split('-', $createdPost->id->text); 
    $newPostID = $idText[2]; 

    return $newPostID; 
} 

function getBlogId($gdClient, $feed) 
{ 
    $gdClient = new Zend_Gdata($client); 
    $query = new Zend_Gdata_Query($feed); 
    $feed = $gdClient->getFeed($query); 
    preg_match('/blog-([0-9]+)/', $feed->id->text, $match); 
    if (isset($match[1])) 
    { 
     return $match[1]; 
    } 
    return false; 
} 

createPublishedPost($gdClient, $blogID); 

错误消息是:

Fatal error: Uncaught exception 'Zend_Gdata_App_HttpException' with message 'Expected response code 200, got 401 User does not have permission to create new post' in /home/content/36/9549036/html/[MYUSER]/Zend/Gdata/App.php:714 Stack trace: #0 /home/content/36/9549036/html/[MYUSER]/Zend/Gdata.php(221): Zend_Gdata_App->performHttpRequest('POST', 'https://www.blo...', Array, '<atom:entry xml...', 'application/ato...', NULL) #1 /home/content/36/9549036/html/[MYUSER]/Zend/Gdata/App.php(905): Zend_Gdata->performHttpRequest('POST', 'https://www.blo...', Array, '<atom:entry xml...', 'application/ato...') #2 /home/content/36/9549036/html/[MYUSER]/Zend/Gdata/App.php(980): Zend_Gdata_App->post(Object(Zend_Gdata_Entry), 'https://www.blo...', NULL, NULL, Array) #3 /home/content/36/9549036/html/[MYUSER]/test.php(29): Zend_Gdata_App->insertEntry(Object(Zend_Gdata_Entry), 'https://www.blo...') #4 /home/content/36/9549036/html/[MYUSER]/test.php(49): createPublishedPost(Object(Zend_Gdata), '[MYBLOGID]...') #5 {main} thrown in /home/content/36/9549036/html/[MYUSER]/Zend/Gdata/App.php on line 714 

有没有人经历过这个? 是否有任何工作代码用PHP发布博客?

+0

您确定它不是验证问题,即不正确的用户名或密码? – Nadh

+0

nah im很确定它不是..无论如何,我似乎已经找到了问题,生病张贴我固定的东西尽快。 – choz

回答

0

我发现了这个问题,它以这种方式工作。

require_once 'Zend/Loader.php'; 
Zend_Loader::loadClass('Zend_Gdata'); 
Zend_Loader::loadClass('Zend_Gdata_Query'); 
Zend_Loader::loadClass('Zend_Gdata_ClientLogin'); 

$user = $_SESSION['BloggerUsername']; 
$pass = $_SESSION['BloggerPassword']; 
$blogUrl = $_SESSION['BloggerUrl']; 
$service = 'blogger'; 

global $gData, $gBlogId; 

$client = Zend_Gdata_ClientLogin::getHttpClient($user, $pass, $service, null, 
     Zend_Gdata_ClientLogin::DEFAULT_SOURCE, null, null, 
     Zend_Gdata_ClientLogin::CLIENTLOGIN_URI, 'GOOGLE'); 

function createPublishedPost($gData, $gBlogId, $myBlogTitle, $myBlogText) 
{ 
    $uri = 'https://www.blogger.com/feeds/' . $gBlogId . '/posts/default'; 
    $entry = $gData->newEntry(); 
    $entry->title = $gData->newTitle($myBlogTitle); 
    $content = $gData->newContent($myBlogText); 
    $content->setType('text'); 
    $entry->content = $content; 
    $entryResult = $gData->insertEntry($entry, $uri); 
    //$idText = split('-', $entryResult->id->text); 
    //$newPostID = $idText[2]; 
    if (!empty($_SERVER['HTTP_REFERER'])) { 
     header("Location: ".$_SERVER['HTTP_REFERER']); 
    } else { 
     header("location:*my_website_link*"); 
    } 
    //return $newPostID; 
} 

function getBlogId($gData, $feed) 
{ 
    $query = new Zend_Gdata_Query($feed); 
    $feed = $gData->getFeed($query); 
    preg_match('/blog-([0-9]+)/', $feed->id->text, $match); 
    if (isset($match[1])) 
    { 
     return $match[1]; 
    } 
    return false; 
} 
$gData = new Zend_Gdata($client); 
$gBlogId = getBlogId($gData, 'http://'.$blogUrl.'/feeds/posts/default'); 
createPublishedPost($gData, $gBlogId, $blogTitle, $blogText); 
+0

这实际上并不能解释问题所在,也不能帮助其他人解决同样的问题。任何人都不可能简单地复制/粘贴代码的专有示例,而不解释底层问题以及为何解决此问题。 – Kato