2012-12-23 53 views
1

这个应用程序张贴到用户的时间表,使用PHP和Facebook的PHP API实现。目前这个工作已经进行了几个星期。状态消息或帖子随机发布到Facebook结果

下面的PHP代码被用于发布一条消息:

if($hasPhoto === TRUE) 
{ 
    // Post to FB with picture 
    $facebook->setFileUploadSupport(true); 

    $result = $facebook->api("/me/photos", "post", array(
     'message' => $message, 
     'place'  => $place, 
     'source' => '@' . $photo 
    )); 
} 
else 
{ 
    // Post to FB without picture 
    $result = $facebook->api("/me/feed", "post", array(
     'message' => $message, 
     'place'  => $place 
    )); 
} 

这是否工作正常,除了有在$结果两种打印格式:

array ('id' => '103240856515XXX',) 
array ('id' => '100004900175XXX_103239809849XXX',) 

的图形API文档告诉我们以下:

A post from Facebook Platform: https://graph.facebook.com/19292868552_10150189643478553 
A status message on the Facebook Page: https://graph.facebook.com/10150224661566729 

这意味着使用的PHP代码生成帖子órs tatus消息。我没有看到文本消息,照片,日期或作者之间的任何关系。它似乎随机发生。

下面显示了我们的数据与id的格式以及是否附加了照片之间的关系。

select count(*) from fbposts where facebookpostid like '%\_%' and hasphoto = 1; -- 90 
select count(*) from fbposts where facebookpostid like '%\_%' and hasphoto = 0; -- 87 
select count(*) from fbposts where facebookpostid not like '%\_%' and hasphoto = 1; -- 47 
select count(*) from fbposts where facebookpostid not like '%\_%' and hasphoto = 0; -- 54 

为什么会发生这种行为?如何强制发布帖子?这是相关的原因是因为Post有一个我想查询的隐私属性。

更新: 查询由FB API给定的状态消息545778052106XXX,有一张照片,给我:

{ 
    "id": "545778052106XXX", 
    "from": { 
    "name": "Jeffrey Krist", 
    "id": "100000226354XXX" 
    }, 
    "name": "My message!", 
    "picture": "http://photos-f.ak.fbcdn.net/hphotos-ak-ash3/522827_545778052106XXX_1151562XXX_s.jpg", 
    "source": "http://sphotos-f.ak.fbcdn.net/hphotos-ak-ash3/s720x720/522827_545778052106XXX_1151562XXX_n.jpg", 
    "height": 720, 
    "width": 720, 
    "images": [ 
    { 
     "height": 2048, 
     "width": 2048, 
     "source": "http://sphotos-f.ak.fbcdn.net/hphotos-ak-ash3/s2048x2048/522827_545778052106XXX_1151562XXX_n.jpg" 
    }, .. lots more 
    ], 
    "link": "https://www.facebook.com/photo.php?fbid=545778052106402&set=p.545778052106XXX&type=1", 
    "icon": "http://static.ak.fbcdn.net/rsrc.php/v2/yz/r/StEh3RhPXXX.gif", 
    "place": { 
    "id": "182665821805XXX", 
    "name": "A company name", 
    "location": { 
     "street": "My street 13", .. 
    } 
    }, 
    "created_time": "2012-11-01T08:35:20+0000", 
    "updated_time": "2012-11-01T08:35:20+0000", 
    "comments": ... 
    "likes": ... 
} 

查询使用的ID从FB API后消息给我:

{ 
    "id": "100003331805XXX_299609210160XXX", 
    "from": { 
    "name": "Some name", 
    "id": "100003331805XXX" 
    }, 
    "message": "My message", 
    "picture": "http://photos-e.ak.fbcdn.net/hphotos-ak-ash3/560724_299609200160XXX_789651XXX_s.jpg", 
    "link": "https://www.facebook.com/photo.php?fbid=299609200160XXX&set=a.285494101571XXX.69331.100003331805XXX&type=1&relevant_count=1", 
    "name": "Photo album name", 
    "icon": "http://static.ak.fbcdn.net/rsrc.php/v2/yz/r/StEh3RhPXXX.gif", 
    "actions": [ 
    { 
     "name": "Comment", 
     "link": "https://www.facebook.com/100003331805XXX/posts/299609210160XXX" 
    }, 
    { 
     "name": "Like", 
     "link": "https://www.facebook.com/100003331805XXX/posts/299609210160XXX" 
    } 
    ], 
    "privacy": { 
    "value": "ALL_FRIENDS", ... 
    }, 
    "place": { 
    "id": "174171872642XXX", ... 
    }, 
    "type": "photo", 
    "status_type": "added_photos", 
    "object_id": "299609200160XXX", 
    "application": { 
    "name": "My app", ... 
    }, 
    "created_time": "2012-12-21T22:33:59+0000", 
    "updated_time": "2012-12-21T23:30:39+0000", 
    "likes": ... 
    "comments": ... 
} 

查询一个组合编号,_( '100000226354XXX_545778052106XXX'),这是消息中的照片,给我:

{ 
    "error": { 
    "message": "Unsupported get request.", 
    "type": "GraphMethodException", 
    "code": 100 
    } 
} 

回答

0

当每个状态消息是发布对象时,不需要强制发布帖子。

状态消息对象10100948019328597

Post对象userid_10100948019328597

状态消息对象

{ 
    "id": "10100948019328597", 
    "from": { 
    "name": "phwd", 
    "id": "13608786" 
    }, 
    "message": "Happy Thanksgiving you cool Canadians!", 
    "updated_time": "2012-10-08T23:17:27+0000", 
    "likes": { 
    "data": [ 
    ], 
    "paging": { 
     "next": 
    } 
    } 
} 

Post对象

{ 
    "id": "13608786_10100948019328597", 
    "from": { 
    "name": "phwd", 
    "id": "13608786" 
    }, 
    "message": "Happy Thanksgiving you cool Canadians!", 
    "actions": [ 
    { 
     "name": "Comment", 
     "link": "http://www.facebook.com/13608786/posts/10100948019328597" 
    }, 
    { 
     "name": "Like", 
     "link": "http://www.facebook.com/13608786/posts/10100948019328597" 
    } 
    ], 
    "privacy": { 
    "description": "Public", 
    "value": "EVERYONE", 
    "friends": "", 
    "networks": "", 
    "allow": "", 
    "deny": "" 
    }, 
    "type": "status", 
    "status_type": "mobile_status_update", 
    "created_time": "2012-10-08T23:17:28+0000", 
    "updated_time": "2012-10-08T23:17:28+0000", 
    "likes": { 
    "data": [ 
    ] 
    }, 
    "comments": { 
    "count": 0 
    } 
} 

检查会比较/me/statuses比0的最佳方式

+0

我用Graph API Explorer试了一下。用户10000022635XXX +状态消息ID为54577805210XXX将为'/ 10000022635XXX_54577805210XXX'为URL,但结果为GraphMethodException。 '/ me/status /'和'/ me/posts'的数据是独一无二的:在帖子数据中没有状态消息;并且状态消息数据中没有帖子。 –

+0

@JeffreyKrist你可以更新这个问题来显示这两个JSON响应的布局(保密信息删除) – phwd

+0

@pwhd,我已经更新了我的初始文章。 –