doubo7131 2015-03-22 23:27
浏览 58
已采纳

使用Php在Facebook上发布状态时出错

I was put files in following url http://the-designhut.com/poststatus. i was placed the facebook-php-sdk files in above url. And also i created client id and secret id for this process.

my php code is,

<?php
 require_once 'src/facebook.php';
 $appId= 'appid';
 $secret='secret code';
 $returnurl='http://the-designhut.com/poststatus/';
 $permission='manage_pages, publish_stream';
 $fb = new Facebook(array('appId'=>$appId, 'secret'=>$secret));

 $fbuser = $fb->getUser();
 if($fbuser){
  }
 else{
 $loginurl = $fb->getLoginUrl(array('scope'=>$permission, 'redirect-      url'=>$returnurl));
 echo'<a href="'.$loginurl.'">Login with FB</a>';
 }
 ?>

but when i run my file i got an error message. that is,

Given URL is not permitted by the Application configuration: One or more of the given URLs is not permitted by the App's settings. It must match the Website URL or Canvas URL, or the domain must be a subdomain of one of the App's domains.

what i do for clear the above error?

  • 写回答

1条回答 默认 最新

  • douyicao2199 2015-03-26 15:41
    关注

    That error means that you have not added your domain to your Facebook App settings or the domain you have added is not the-designhut.com

    https://developers.facebook.com/apps/{YOUR_APP_ID}/settings/ ("App Domains" field)

    Update your settings and it will work.

    I hope it helps.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部