我已阅读与标题相关的所有帖子。但我有一个非常简单的问题。如果有人能回答这个问题,那将非常有帮助。
facebook 中的我/帐户页面是什么?
我在这里有很多帖子,例如
使用 cron php 服务器端发布到 facebook 公司页面
一切都解释了,但我知道这听起来很有趣,但我坚持最简单的一步。
“使用 Graph Explorer 时,您需要导航到 /me/accounts 端点”
请帮我。
请检查代码
include 'includes/facebook.php';
$app_id = "XXXXXXXXXX";
$app_secret = "XXXXXXXXXXXXXX";
$page_id = "XXXXXXXXXXXX";
$my_url = "http://XXXXXXXXXXX.com";
$page_access_token = "XXXXXXXXXXXXXXX";
//Create the facebook object
$facebook = new Facebook(array(
'appId' => $app_id,
'secret' => $app_secret,
'cookie' => true
));
//Write to the Page wall
try {
$attachment = array(
'access_token' => $page_access_token,
'message'=> "Hello World"
);
$result = $facebook->api('/639386542780904/feed', 'post', $attachment);
} catch(Exception $e) {
echo "error";
// ...
// mail($to, $subject, $message, $headers);
}