我正在尝试在 Facebook 中发送标题信息,但是在单击 Like 按钮时发送 URL 来代替标题。
我的示例 HTML 在下面
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="ASPNetDB.WebForm1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml">
<head runat="server">
<title></title>
<meta property="og:title" content="Title" />
<meta property="og:description" content="Description" />
<meta property="og:url" content="url info" />
<meta property="og:image" content="image url" />
</head>
<body>
<form id="form1" runat="server">
<div>
<iframe frameborder="0" scrolling="no" allowtransparency="true" style="border: none;
overflow: hidden; width: 260px; height: 35px;" src="http://www.facebook.com/plugins/like.php?href=http://localhost:49334/WebForm1.aspx&send=false&layout=button_count&width=100&show_faces=false&action=like&colorscheme=light&font=arial&height=35">
</iframe>
</div>
</form>
</body>
</html>
有任何想法吗?
注意 -这是我的测试应用程序。我没有公开的 IP 地址。