如何在没有对话框的情况下使用我的电子邮件和密码进行授权? 我怎样才能扩展access_token。 PHP SDK中的函数getUser始终返回0。 我想用cronjob在粉丝团的墙上发帖。 我这样试试:
$page_id = 'page ID';
$data['message'] = "message";
$data['access_token'] = $page_access_token;
$post_url = 'https://graph.facebook.com/'.$page_id.'/feed';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $post_url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$return = curl_exec($ch);
curl_close($ch);
这是工作,但在一小时内,如果我已经登录