Facebook 发布 - 什么是 ogurl?

发布于 2024-10-21 21:30:08 字数 337 浏览 0 评论 0原文

我正在尝试使用示例 php 代码在我的 facebook 应用程序墙上发布内容。 我在这里获取了 php 示例代码表单: http://developers.facebook.com/docs/opengraph/< /a>

我更改了 APP_ID 和 SECRET,但我不知道需要在 $ogurl 变量中放入什么内容,而且我找不到可以说明它是什么的东西。

我认为这是缩短的“打开图形 URL”,但我仍然不知道它是什么或在哪里可以找到它。

I am trying to use the sample php code to publish content on my facebook app's wall.
I took the php sample code form here: http://developers.facebook.com/docs/opengraph/

I changed the APP_ID and the SECRET but I have no Idea what I need to put in the $ogurl variable and I couldnt find somethign that say what it is..

I assume this is shorten for "Open Graph URL" but still I dont know what it is or where I can find it.

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

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

发布评论

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

评论(1

笨死的猪 2024-10-28 21:30:08

根据开放图协议页面

og:url
   The canonical URL of your object that will be used as its permanent ID
   in the graph

所以你必须定义你想要“定义”的任何URL “你的对象。该 url 将成为该对象在图中的永久 ID。

请注意,此 URL 应该是“规范的”,因为它是您认为内容/对象的“官方且权威”的 URL。

您可以在 facebook 文档上的示例中看到他们所做的:

curl -F 'access_token=...' \
 -F 'message=Hello Likers' \
 -F 'id=http://www.myopengraphpage.com/page1.html' \
 https://graph.facebook.com/feed

其中 id 对应于 PHP 代码中的 $ogurl。所以 $ogurl 必须是您的内容的 url,格式如下:
$ogurl = "http://www.myopengraphpage.com/page1.html";

according to the open graph protocol page,

og:url
   The canonical URL of your object that will be used as its permanent ID
   in the graph

so you have to define whatever URL you want to "define" your object. This url will become the permanent ID of this object in the graph.

Be aware that this url should be "canonical" in the sense that it is what you consider to be the "official and definitive" URL for your content / object.

you can see on the example on the facebook doc that they do :

curl -F 'access_token=...' \
 -F 'message=Hello Likers' \
 -F 'id=http://www.myopengraphpage.com/page1.html' \
 https://graph.facebook.com/feed

where id corresponds to $ogurl in the PHP code. so $ogurl must be the url of your content in the form :
$ogurl = "http://www.myopengraphpage.com/page1.html";

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