1
A
回答
0
您需要請求manage_pages
權限,這將允許您訪問「頁面」令牌。您可以使用您的應用程序令牌和打算拿到令牌
https://graph.facebook.com/userId/accounts?access_token={appToken}
然後,您除了可以用它來在所有者字段通過與頁面ID與事件數據的其餘部分。
這應該爲頁面創建事件。
0
看到此鏈接http://pastebin.com/WSHCDLdr
這可能會幫助你.........
PHP代碼在此鏈接在下面給出........
<?php
require_once 'fb.php';
$pageId = "XXXXXXXXXXXXXXXXXXX";
define('API_SECRET', 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX');
$baseurl = "http://example.com";
$facebook = new Facebook(array(
'appId' => 'XXXXXXXXXXXXXXXXXX',
'secret' => API_SECRET,
'cookie' => true,
'fileUpload' => true
));
$session = $facebook->getSession();
$me = null;
// Session based API call.
if ($session) {
$uid = $facebook->getUser();
// $me = $facebook->api('/me');
$me = $facebook->api("/$pageId");
}
if ($me) {
$logoutMe = $facebook->getLogoutUrl(array('next' => $base_url));
} else {
$loginMe = $loginUrl = $facebook->getLoginUrl(array(
'display' => 'popup',
'next' => $baseurl /*. '?loginsucc=1'*/,
// 'cancel_url'=> $baseurl . '?cancel=1',
'req_perms' => 'create_event'
));
}
// if user click cancel in the popup window
if ($me && empty($_GET['session']) && empty($_COOKIE['fbs_' . API_SECRET])) {
die("<script>window.close();</script>");
} elseif($me && !empty($_GET['session'])) {
//only if valid session found and loginsucc is set,
//after facebook redirects it will send a session parameter as a json value
//now decode them, make them array and sort based on keys
$sortArray = get_object_vars(json_decode($_GET['session']));
ksort($sortArray);
$strCookie = "";
$flag = false;
foreach($sortArray as $key=>$item){
if ($flag) $strCookie .= '&';
$strCookie .= $key . '=' . $item;
$flag = true;
}
//now set the cookie so that next time user don't need to click login again
setCookie('fbs_' . API_SECRET, $strCookie);
die("<script>window.close();window.opener.location.reload();</script>");
}
if ($me) {
var_dump($me);
//Path to photo (only tested with relative path to same directory)
// $file = "end300.jpg";
//The event information array (timestamps are "Facebook time"...)
$time = time() + rand(1, 100) * rand(24, 64) * 3600;
$event_info = array(
"privacy_type" => "SECRET",
// "name" => "Event Title " . time(),
"name" => "Test Event Title " . time(),
"host" => "Me ",
"start_time" => $time,
"end_time" => $time + 120,
"location" => "London " . time(),
"description" => "Event Description " . time()
);
//The key part - The path to the file with the CURL syntax
// $event_info[basename($file)] = '@' . realpath($file);
//Make the call - returns the event ID
// var_dump($facebook->api('me/events','post',$event_info));
var_dump($facebook->api("$pageId/events", 'post', $event_info));
?>
<a href="<?= $facebook->getLogoutUrl() ?>">Logout</a>
<?
} else { ?>
<script type="text/javascript">
var newwindow;
var intId;
function login(){
var screenX = typeof window.screenX != 'undefined' ? window.screenX : window.screenLeft,
screenY = typeof window.screenY != 'undefined' ? window.screenY : window.screenTop,
outerWidth = typeof window.outerWidth != 'undefined' ? window.outerWidth : document.body.clientWidth,
outerHeight = typeof window.outerHeight != 'undefined' ? window.outerHeight : (document.body.clientHeight - 22),
width = 500,
height = 270,
left = parseInt(screenX + ((outerWidth - width)/2), 10),
top = parseInt(screenY + ((outerHeight - height)/2.5), 10),
features = (
'width=' + width +
',height=' + height +
',left=' + left +
',top=' + top
);
newwindow=window.open('<?=$loginUrl?>','Login by facebook',features);
if (window.focus) {newwindow.focus()}
return false;
}
</script>
Please login to Facebook and we will setup the event for you! <br />
<a href="#" onclick="login();return false;">
<img src="http://static.ak.fbcdn.net/rsrc.php/zB6N8/hash/4li2k73z.gif" border="0">
</a>
<?php } ?>
+0
提供答案時,您應該在實際答案中包含方法/示例。如果您的鏈接被刪除,您的答案將完全無用。 – Curt
+0
謝謝柯特,我在答案中添加了代碼....... –
相關問題
- 1. 使用playframework在Facebook上創建活動
- 2. 使用php創建Facebook頁面上的活動facebook
- 3. 上Singleton類創建活動
- 4. 在Android中使用AsyncTask創建活動
- 5. 通過PHP API在fanpage上傳視頻
- 6. 如何在Facebook上創建活動?
- 7. 在活動上創建疊加圖像
- 8. 在Android上創建兩次活動
- 9. 在Palm OS上創建日曆活動
- 10. 在Android上使用與會者電子郵件創建活動
- 11. 在Android上重新創建活動時使用DatabaseHelper
- 12. 無法在Android Studio上使用嚮導創建活動
- 13. 開始活動,而在活動創建
- 14. 在活動中創建活動?
- 15. Android使用片段創建活動,onCreateView
- 16. 使用attr_accessor創建活動記錄
- 17. 使用解析創建註冊活動
- 18. 使用Graph API創建活動場地
- 19. 問題創建活動使用MBCalendarKit
- 20. 使用wait/notify創建活動課程
- 21. 無法使用ActionBar創建活動
- 22. 使用活動創建Android庫項目
- 23. 使用Zend Google Calendar API創建私人活動PHP框架
- 24. 從哪裏開始使用Facebook的PHP SDK創建活動?
- 25. 在Android中動態創建滾動視圖使用活動
- 26. Facebook創建活動
- 27. ToastMessageShow活動創建
- 28. 創建MailChimp活動
- 29. 活動創建者
- 30. 在mysql/php上使用jquery創建的動態頁面
您應該提供更多關於您用於創建事件的方法的信息 –
而通過信息我們的意思是代碼... – ifaour