0

私はFBAPIとFQLを使用して、識別されたユーザーのイベントコードを取得していました。

Facebookのイベントページを表示したいのですが、方法がわかりません...

ここに例があります:

I go to mywebsite.com, and I login into Facebook.
I get a list of all my current events, with a Link
If I follow this link, I get the event ID (1234567, for example)
[this step is the one I want to do]:
I show in my website (like if it was an iframe) the following FB page:
    https://www.facebook.com/events/1234567

だから、それで私はユーザーが私のウェブサイトを離れることなく、Facebookと直接対話できるようにしたいです...

どうやってやるの?出来ますか?

ありがとう!

4

1 に答える 1

0

解決しました!

function viewFBActivity($id){
    $h = curl_init("https://www.facebook.com/events/".$id."/");
    curl_setopt($h, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
    curl_setopt($h, CURLOPT_HEADER, false);
    curl_setopt($h, CURLOPT_HTTPHEADER, array("Accept-Language: es-es,en"));
    curl_setopt($h, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($h, CURLOPT_SSL_VERIFYHOST, false);
    curl_setopt($h, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
    curl_setopt($h, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($h, CURLOPT_AUTOREFERER, true);
    $ret= curl_exec($h);
    echo($ret);
}

将来誰かに役立つことを願っています!

于 2013-01-17T07:17:59.530 に答える