我真的在努力寻找能够让基础知识正常运行的东西。即使SDK附带的教程应用程序似乎也必须上传才能工作,因此没有简单的方法可以在本地进行调试和测试。
任何人都可以找到我可以解决的工作样本的链接吗?
干杯!
这是我目前在我的aspx中所拥有的。代码隐藏中没有任何内容:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="FacebookTest.WebForm1" %>
<%@ Import Namespace="Facebook" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">
<head runat="server">
<title></title>
</head>
<body>
<p>
</p>
<% var app = new FacebookApp();
if (app.Session == null)
{%>
<img id="fbLogin" src="login-button.png" />
<%
}%>
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
FB.init({ appId: '<%:FacebookSettings.Current.AppId %>', status: true, cookie: true, xfbml: true });
$('#fbLogin').click(function () {
FB.login(function (response) {
if (response.session) {
//window.location = '<%--:Url.Action("Profile") --%>'
} else {
// user cancelled login
}
});
});
</script>
</body>
</html>
答案 0 :(得分:3)
我也在与这个sdk战斗。对于本地测试,您必须执行以下操作