Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将EasyBlog博客文章从我自己的组件自动发布到 Twitter。我目前有:
$blog = EasyBlogHelper::getTable( 'Blog' ); $blog->load( $postId ); $blog->autopost(array('twitter'));
autopost说它成功了,但帖子没有出现在 Twitter 上,我的 Joomla 网站的后端也没有显示。我没有收到任何错误消息。
autopost
我能做些什么来实现这一目标?
事实证明,我错误地使用了 EB 的 API。最后一行应该是:
$blog->autopost(array('twitter'), array('twitter'));