我在我的网站上使用 PHP 创建了一个 Facebook 应用程序。要在我的网站上使用此应用程序,用户必须使用 Facebook 身份验证登录。
这个应用程序基本上允许用户在他的墙上发布默认评论。使用我的 facebook 个人资料帐户可以正常工作,但是当我让我的朋友使用我的网站时,他收到以下错误 - 'Uncaught OAuthException: (#200) The user has not authorized the application to perform this action throw in'
到目前为止,我发现的问题的唯一解决方案是输入以下 URL -<pre>https://www.facebook.com/login.php?api_key=API_KEY&cancel_url=http://www.magimagi.com&next=http://magimagi.com/login/uploadtopage2.php&fbconnect=1&return_session=1&session_version=3&v=1.0&display=page&req_perms=user_about_me,user_birthday,publish_stream,offline_access</pre>
我不想在我的应用程序上创建一个链接供用户单击它 - 相反,我希望它集成到我网站上已经存在的 PHP 代码中。
这是我拥有的示例 PHP 代码
<pre>
/ Get User ID
$user = $facebook->getUser();
if ($user) {
try {
$user_profile = $facebook->api('/me');
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
}
if ($user) {
$logoutUrl = $facebook->getLogoutUrl();
} else {
$loginUrl = $facebook->getLoginUrl( array(
'scope' => 'publish_stream'
));
}
</pre>
这是 HTML
<pre>
<form id="selectFriend" name="selectFriend" method="post">
<label for="Friend">Friend:</label>
<select id="friend" name="friend">
<?php
foreach($user_friends['data'] as $f){
echo '<option value="'.$f['id'].'">'.$f['name'] .'</option>';
}
?>
</select>
<label for="URL">URL:</label>
<input id="link" name="link">
<input id="message" name="message">
<input type="submit" name="submit" id="submit" value="Send!">
</form>