-1

我在我的网站上使用 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>

4

2 回答 2

0

'未捕获的 OAuthException:(#200)用户尚未授权应用程序执行此操作引发'

到目前为止,我发现的问题的唯一解决方案是 […]

到目前为止,您似乎对应用程序和授权的基础知识还没有太多了解……所以请开始阅读相关文档!

https://developers.facebook.com/docs/authentication/

于 2012-06-13T13:31:07.147 回答
0

我刚刚在Graph Explorer中尝试过,似乎为了从中获取信息/me,您需要传递访问令牌(我不记得以前是这样的)。使用用户的 id 代替 if /me,可以正常工作并返回没有访问令牌的基本信息。您还可以尝试使用当前请求传递访问令牌:

$token = $facebook->getAccessToken();
$user_profile = $facebook->api('/me',array (
'access_token' => $token)
);
于 2012-06-13T13:07:00.723 回答