通过表达式引擎的 Twitter 时间轴

发布于 2024-11-15 04:28:54 字数 240 浏览 2 评论 0原文

谁能帮我通过 Expression Engine 集成 Twitter。我是表达式引擎的新手,我尝试遵循 Twitter 时间线 的示例 由 EE 团队开发,但无法运行。

谁能帮我一步步完成 EE2 的流程?

谢谢

Can anyone help me integrate Twitter through Expression Engine. I am new to expression engine and I have tried to follow the example the Twitter Timeline developed by the EE team but couldn't get it working.

Can anyone help me with step by step process in EE2?

Thanks

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

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

发布评论

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

评论(1

泡沫很甜 2024-11-22 04:28:54

使用 Twitter 时间线插件 下载页面中的示例,将以下代码插入到您的ExpressionEngine 模板:

{exp:twitter_timeline screen_name="ladygaga" limit="3"}
    <div class="tweet">
        <div class="date">{created_at format="%m-%d %g:%i"}</div>
        <div class="author">
            <div class="icon">
                <img src="{profile_image_url}" width="48" height="48" alt="" />
            </div>
            {name}
        </div>
        <div class="status">{text}</div>
    </div>
{/exp:twitter_timeline}

注意:该插件仅适用于公共 Twitter 提要,因此请确保您尝试显示的提要不是私有的。在此示例中,我使用 Lady Gaga 的 Twitter 流

所有错误消息都记录在模板解析日志中。

因此,如果没有输出或意外输出,请在控制面板的 输出和调试首选项位于:CP Home >管理员>系统管理>输出和调试

在此处输入图像描述

在浏览器中重新加载页面并查看模板解析日志以获取来自 Twitter 时间线的信息:

在此处输入图像描述

如果您仍然无法使 Twitter 时间线插件正常工作,请将您的问题的描述发布到 ExpressionEngine 2 技术支持论坛 — 他们将能够更好地帮助解决您的问题。

Using the example from the Twitter Timeline Plugin download page, insert the following code into one of your ExpressionEngine templates:

{exp:twitter_timeline screen_name="ladygaga" limit="3"}
    <div class="tweet">
        <div class="date">{created_at format="%m-%d %g:%i"}</div>
        <div class="author">
            <div class="icon">
                <img src="{profile_image_url}" width="48" height="48" alt="" />
            </div>
            {name}
        </div>
        <div class="status">{text}</div>
    </div>
{/exp:twitter_timeline}

Note: The plugin only works on public Twitter feeds, so make sure that the feed your trying to display is not private. For this example, I'm using Lady Gaga's twitter stream.

All error messages are logged in the Template Parsing Log.

Therefore if you have no output, or unexpected output, enable the Template Parsing Log in the Control Panel's Output and Debugging Preferences at: CP Home > Admin > System Administration > Output and Debugging.

enter image description here

Reload the page in your browser and look through the Template Parsing Log for information from the Twitter Timeline:

enter image description here

If you still can't get the Twitter Timeline plugin to work, post a description of your problem to the ExpressionEngine 2 Technical Support Forum — they'll be able to better help troubleshoot your issue.

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