【发布时间】:2016-02-03 17:28:16
【问题描述】:
我正在使用 PHP 制作 Facebook 应用程序。通过 Facebook API,应用程序显示登录用户的最新帖子。在检索每个帖子的created_time 时,我发现它要么没有显示任何内容,要么只显示1970-01-01T00:00:00+0000。 (这可以在下图中看到。)即使我使用DateTime,它仍然存在。
它应该返回类似2016-01-31T16:31:26+0000 的内容,如使用 Facebook 的 Graph API Explorer 所见。
不知道如何纠正这个问题,我能够让它以正确的格式显示,如下所示:
$ts = strtotime($key['created_time']);
$myTime = gmdate(DATE_ISO8601, $ts);
所有信息均来自 Facebook,并位于 foreach 循环中。它遍历每个帖子并知道将什么放在哪里,并且每个created_time 值都被满足为$key['created_time']
这是我的代码:
<?php
// Getting all posts published by user
try {
$posts_request = $fb->get('/me/posts?fields=id,created_time,message,link,picture,name&limit=7');
$posts_response = $posts_request->getGraphEdge();
} catch(Facebook\Exceptions\FacebookResponseException $e) {
// When Graph returns an error
echo 'Graph returned an error: ' . $e->getMessage();
exit;
} catch(Facebook\Exceptions\FacebookSDKException $e) {
// When validation fails or other local issues
echo 'Facebook SDK returned an error: ' . $e->getMessage();
exit;
}
if ($fb->next($posts_response)) {
$total_posts = $posts_response->asArray();
$totalPosts = count($total_posts);
// Form - Post
echo "<p><strong>* With this text box below, you can post to your Facebook Profile about your experience using this application if you wish. Once submitted, this post will then also appear in the list of your other posts below.</strong></p>";
echo "<form action='posttouserstimeline.php' method='post'>";
echo "<textarea name='description' class='posts'></textarea>";
echo "<br><br>";
echo "<input type='submit' class='webbutton' value='Post to Facebook'>";
echo "</form>";
echo "<br>";
echo "<p><strong>* Below are your '5' most resent posts, from your Facebook Profile</strong></p>";
//$date = new DateTime($key['created_time']);
foreach($total_posts as $key) {
$ts = strtotime($key['created_time']);
$myTime = gmdate(DATE_ISO8601, $ts);
echo "Time and Date of Post: ".$myTime."<br>";
echo "<img class='postsprofile' alt='profilepic' src='".$picture['url']."'/> <a href='https://facebook.com/".$profile['id']."' target='_blank'>".$profile['name']."</a><br>";
echo $key['message'].'<br><br>';
echo "<a href='".$key['link']."' target='_blank'><img class='postsprofile' alt='".$key['name']."' src='".$key['picture']."'/></a><br><hr><br>";
//echo "<img class='postsprofile' alt='".$key['name']."' src='".$key['picture']."'/><br>";
//echo "<a href='".$key['link']."' target='_blank'>".$key['link']."</a><br><hr><br>";
}
}
【问题讨论】:
标签: php facebook facebook-graph-api