doubo7131 2015-03-23 07: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 23: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.

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

报告相同问题?

悬赏问题

  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了