1

我正在使用 Facebook Graph API 在当前登录的用户朋友的墙/提要上发帖。我希望它在墙上的帖子中显示三个操作链接。

这是“发布”部分下记录的 POST 请求:http://developers.facebook.com/docs/reference/api/

我已将 CURLOPT_POSTFIELDS 设置如下

(
    [access_token] => 161318CRR8l0EBFXGhd-00.131037840000000862225914|R5i30nmZr6yKICbHayaDzZ02f_Y
    [message] => This is a test message.
    [picture] => http://www.mydoain.com/mylogo.jpg
    [link] => http://www.mydoain.com/check.php
    [actions] => {name:"View Demo",link:"http://www.mydomain.com/demo",name:"View Features",link:"http://www.mydomain.com/features"}
    [name] => Click to Visit
    [caption] => 
    [properties] =>  properties: [
                {
                  name: "Demo",
                  text: "View Demo",
                  href: "http://www.mydomain.com/demo",
                },
                {
                  name: "Features",
                  text: "View Features",
                  href: "http://www.mydomain.com/features",
                },
            ]
    [description] => 
    [source] => 
)

并且发出 POST 请求:https://graph.facebook.com/10000000006549/feed
但它给了我以下错误:

{
   "error": {
      "type": "OAuthException",
      "message": "(#100) properties must be a dictionary"
   }

为什么我会收到此 OAuth 异常?我应该进行哪些更改才能在墙贴中有 3 个操作链接?

请指导我......

4

1 回答 1

0

这可能是 Facebook 端的错误或文档问题。在他们的 Graph API 文档中,/feed 被列为仅接受消息、图片、链接、名称、标题、描述和源参数。但是,流附件文档中仍然提到了 properties 参数,这是唯一详细记录其他参数的地方。因此,最终,虽然我不知道出了什么问题,但您的代码似乎没有问题。(无论我为该属性提供哪种散列和数组排列,我都会遇到同样的问题。)

http://developers.facebook.com/docs/reference/api/ http://developers.facebook.com/docs/guides/attachments/

于 2011-09-16T11:59:51.223 回答