来自 codeplex 的 facebook c# sdk 集成

发布于 2024-10-14 05:37:55 字数 647 浏览 1 评论 0原文

我正在使用 codeplex 中的 c# sdk facebook 集成并收到一个奇怪的错误:

我的 web.config 中有以下内容并收到一个它无法识别的错误

编译错误:

警告 12 C:\Documents and Settings\admin\Desktop\car\Phase_2\tissot\tissot4\Default.aspx:ASP.NET 运行时错误:无法识别的配置部分 facebook。 (C:\Documents and Settings\admin\Desktop\car\Phase_2\tissot\tissot4\web.config 第 17 行) C:\Documents and Settings\admin\Desktop\car\Phase_2\tissot\tissot4\Default.aspx 1 1天梭4

<facebookSettings
appSecret="################"
appId="$$$$$$$$$$$$$$$$$" 
/>

<canvasSettings
canvasPageUrl=http://apps.facebook.com/myapp/
authorizeCancelUrl=http://apps.facebook.com/myapp/ 
/>

I am using c# sdk facebook integration from codeplex and getting a strange error:

I have the following in my web.config and get an error that it does not recognize

Compile Error:

Warning 12 C:\Documents and Settings\admin\Desktop\car\Phase_2\tissot\tissot4\Default.aspx: ASP.NET runtime error: Unrecognized configuration section facebook. (C:\Documents and Settings\admin\Desktop\car\Phase_2\tissot\tissot4\web.config line 17) C:\Documents and Settings\admin\Desktop\car\Phase_2\tissot\tissot4\Default.aspx 1 1 tissot4

<facebookSettings
appSecret="################"
appId="$$$$$$$$$" 
/>

<canvasSettings
canvasPageUrl=http://apps.facebook.com/myapp/
authorizeCancelUrl=http://apps.facebook.com/myapp/ 
/>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

染火枫林 2024-10-21 05:37:55

您是否定义了configSections

由于未定义配置节标记是一个 Microsoft Bug,可以通过在后面添加配置节标记来解决像这样的部分

<configSections>
    <section name="facebookSettings" type="Facebook.FacebookConfigurationSection"/>
    <section name="canvasSettings" type="Facebook.Web.CanvasConfigurationSettings"/>
  </configSections>

  <facebookSettings
        appSecret="your_api_secret" 
        appId="your_app_id" />
  <canvasSettings
    canvasPageUrl="http://apps.facebook.com/graphtoolkit/"
    authorizeCancelUrl="http://apps.facebook.com/graphtoolkit/home/cancel" />

Have you defined the configSections?

Since Configuration Section Tags not defined is a Microsoft Bug which can be resolved by adding the configuration section tag after the section like this

<configSections>
    <section name="facebookSettings" type="Facebook.FacebookConfigurationSection"/>
    <section name="canvasSettings" type="Facebook.Web.CanvasConfigurationSettings"/>
  </configSections>

  <facebookSettings
        appSecret="your_api_secret" 
        appId="your_app_id" />
  <canvasSettings
    canvasPageUrl="http://apps.facebook.com/graphtoolkit/"
    authorizeCancelUrl="http://apps.facebook.com/graphtoolkit/home/cancel" />
脸赞 2024-10-21 05:37:55

根据文档此处 canvasSettings 元素应包含以下内容:

  • canvasPage
  • authorizeCancelUrl

您有 canvasPageUrl ,您应该使用 canvasPage >

摘自上述文章:

现在,在该标签的正下方,您应该
查看“canvasSettings”设置
元素。将其更改如下(再次
使用 Facebook 屏幕来帮助您):

  • canvasPage – 画布页面
  • authorizeCancelUrl – “http://www.facebook.com”(或任何 URL
    你想要它到什么时候
    授权失败)

According to the documentation here the canvasSettings element should contain the following:

  • canvasPage
  • authorizeCancelUrl

You have canvasPageUrl where as you should be using canvasPage

From the article mentioned above:

Now, right below that tag you should
see the “canvasSettings” settings
element. Change it as follows (again
use the Facebook screen to help you):

  • canvasPage – Canvas Page
  • authorizeCancelUrl – “http://www.facebook.com “(or any URL
    you want it to go to when
    Authorization fails)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文