使用cURL PHP发布到Facebook用户墙

使用cURL PHP发布到Facebook用户墙,第1张

使用cURL PHP发布到Facebook用户
$attachment =  array('access_token' => $token,'message' => $msg,'name' => $title,'link' => $uri,'description' => $desc,'picture'=>$pic,'actions' => json_enpre(array('name' => $action_name,'link' => $action_link)));$ch = curl_init();curl_setopt($ch, CURLOPT_URL,'https://graph.facebook.com/fbnameorid/feed');curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);curl_setopt($ch, CURLOPT_POST, true);curl_setopt($ch, CURLOPT_POSTFIELDS, $attachment);curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);  //to suppress the curl output $result = curl_exec($ch);curl_close ($ch);


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4911028.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存