将 phpbb 论坛帖子导出到博客或其他博客

发布于 2024-09-18 11:16:22 字数 65 浏览 4 评论 0原文

有这个论坛。我希望能够选择某个论坛帖子并将其转换为博客帖子。这可能吗?如果是这样我该如何开始?

谢谢

There is this forum. I want to to be able to select a certain forum post and convert it to a blogger post . Is this possible ? If so how do I get started ?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仅一夜美梦 2024-09-25 11:16:22

这当然是可能的,但目前尚不存在用于此目的的 Mod,因此您必须自定义代码以从发布页面在 PHPBB 中创建 Mod,以将帖子推送到 Blogger。您可以使用 Blogger PHP API 的以下功能来创建 Blogger 帖子:

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

  $createdPost = $gdClient->insertEntry($entry, $uri);
  $idText = split('-', $createdPost->id->text);
  $newPostID = $idText[2]; 

  return $newPostID; 
}

有关 Blogger API 的更多信息,请参阅此处:

http://code.google.com/apis/blogger/docs/1.0/developers_guide_php.html

如果您不具备创建 PHPBB Mod 所需的技能您可以通过在以下 PHPBB 论坛上发布请求来请求 Mod:

http:// www.phpbb.com/community/viewforum.php?f=72

皮特

This is certainly possible but no Mod currently exists for this so you would have to custom code to create a Mod in PHPBB from the Posting Page to push posts to Blogger. You can use the following function of the Blogger PHP API to create a Blogger Post:

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

  $createdPost = $gdClient->insertEntry($entry, $uri);
  $idText = split('-', $createdPost->id->text);
  $newPostID = $idText[2]; 

  return $newPostID; 
}

More information about the Blogger API can be found here:

http://code.google.com/apis/blogger/docs/1.0/developers_guide_php.html

If you don't have the necessary skills to create a PHPBB Mod you can request a Mod by posting a request on the following PHPBB Forum:

http://www.phpbb.com/community/viewforum.php?f=72

Pete

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文