0

我遇到了问题,无法使用客户端 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 发布博主?

4

1 回答 1

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);
于 2012-11-25T05:34:20.883 回答