Facebook 发布 - 什么是 ogurl?
我正在尝试使用示例 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据开放图协议页面,
所以你必须定义你想要“定义”的任何URL “你的对象。该 url 将成为该对象在图中的永久 ID。
请注意,此 URL 应该是“规范的”,因为它是您认为内容/对象的“官方且权威”的 URL。
您可以在 facebook 文档上的示例中看到他们所做的:
其中 id 对应于 PHP 代码中的 $ogurl。所以 $ogurl 必须是您的内容的 url,格式如下:
$ogurl = "http://www.myopengraphpage.com/page1.html";
according to the open graph protocol page,
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 :
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";