来自 codeplex 的 facebook c# sdk 集成
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否定义了
configSections
?由于未定义配置节标记是一个 Microsoft Bug,可以通过在后面添加配置节标记来解决像这样的部分
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
根据文档此处
canvasSettings
元素应包含以下内容:canvasPage
authorizeCancelUrl
您有
canvasPageUrl
,您应该使用canvasPage
>摘自上述文章:
According to the documentation here the
canvasSettings
element should contain the following:canvasPage
authorizeCancelUrl
You have
canvasPageUrl
where as you should be usingcanvasPage
From the article mentioned above: