观察 https://developers.facebook.com/docs/chat/
本文档涵盖的服务和 API 已随 Platform API v2.0 的发布而弃用。一旦版本 1.0 被弃用,chat.facebook.com 将不再可用。
重要的!阅读本文,你可能想做一些与这个问题有关的事情完全不同的事情。
我正在使用连接到 Facebook 聊天 API 的 WebForms C# 创建聊天。
我还查看了这个 SO question(以及所有链接)。由于 Facebook 现在需要,某些部分不再相关auth_token
。
要复制这一点,您应该设置一个 Facebook Web 应用程序,使用appId
具有 xmpp_login 权限集的用户帐户。然后在后面创建一个Chat.aspx
带有代码并相应地粘贴此代码。并替换硬编码的用户进行交互。
我有两个(也许三个)问题,我认为这会阻止我成功实现发送聊天消息的目标。
- 文档中记录的过程与文档描述
// finishes auth process
不匹配 (在我从 Facebook 收到基于 SSL/TLS 的成功消息后,我没有得到任何回复。) - 我不知道应该如何设置“发送聊天消息”部分,而且由于我没有收到来自 Facebook 的任何消息,因此很难判断可能出了什么问题。
我也有一些帮助添加 xmpp_login 权限等..为清楚起见删除。
全局变量:
public partial class Chat : Page
{
public TcpClient client = new TcpClient();
NetworkStream stream;
private SslStream ssl;
private string AppId { get; set; }
public string AppSecret { get; set; }
public string AppUrl { get; set; }
public string UserId { get; set; }
public string AccessToken { get; set; }
private string _error = string.Empty;//global error string for watch debugging in VS.
public const string FbServer = "chat.facebook.com";
private const string STREAM_XML = "<stream:stream xmlns:stream=\"http://etherx.jabber.org/streams\" version=\"1.0\" xmlns=\"jabber:client\" to=\"chat.facebook.com\" xml:lang=\"en\" xmlns:xml=\"http://www.w3.org/XML/1998/namespace\">";
private const string AUTH_XML = "<auth xmlns='urn:ietf:params:xml:ns:xmpp-sasl' mechanism='X-FACEBOOK-PLATFORM'></auth>";
private const string CLOSE_XML = "</stream:stream>";
private const string RESOURCE_XML = "<iq type=\"set\" id=\"3\"><bind xmlns=\"urn:ietf:params:xml:ns:xmpp-bind\"><resource>fb_xmpp_script</resource></bind></iq>";
private const string SESSION_XML = "<iq type=\"set\" id=\"4\" to=\"chat.facebook.com\"><session xmlns=\"urn:ietf:params:xml:ns:xmpp-session\"/></iq>";
private const string START_TLS = "<starttls xmlns=\"urn:ietf:params:xml:ns:xmpp-tls\"/>";
然后在Page_Load
所有需要的步骤中(或应该)执行。值得注意的是SendMessage("test");
. 我只是试图把它放在那里,看看它是否能成功发送聊天消息......SetUserNameAndAuthToken
将我的身份验证令牌和用户名设置为全局变量。AuthToken 有效。
protected void Page_Load(object sender, EventArgs e)
{
this.AppId = "000000082000090";//TODO get from appsettings.
//AddAdditionalPermissions("xmpp_login");//TODO handle xmpp_login persmission
this.AppSecret = "d370c1bfec9be6d9accbdf0117f2c495"; //TODO Get appsecret from appsetting.
this.AppUrl = "https://fbd.anteckna.nu";
SetUserNameAndAuthToken();
Connect(FbServer);
// initiates auth process (using X-FACEBOOK_PLATFORM)
InitiateAuthProcess(STREAM_XML);
// starting tls - MANDATORY TO USE OAUTH TOKEN!!!!
StartTlsConnection(START_TLS);
// gets decoded challenge from server
var decoded = GetDecodedChallenge(AUTH_XML);
// creates the response and signature
string response = CreateResponse(decoded);
//send response to server
SendResponseToServer(response);
SendMessage("test");
// finishes auth process
FinishAuthProcess();
// we made it!
string streamresponseEnd = SendWihSsl(CLOSE_XML);
}
所以我得到一个响应,然后我将响应发送到服务器:
private void SendResponseToServer(string response)
{
string xml = String.Format("<response xmlns=\"urn:ietf:params:xml:ns:xmpp-sasl\">{0}</response>", response);
string response2 = SendWihSsl2(xml);
if (!response2.ToLower().Contains("success"))
_error = response2;
}
这需要 1 分 40 秒......并且响应是:
<success xmlns='urn:ietf:params:xml:ns:xmpp-sasl'/>
最后我做了 FinishAuthPorcess()
private void FinishAuthProcess()
{
string streamresponse = SendWithSsl(STREAM_XML);
if (!streamresponse.Contains("STREAM:STREAM"))
_error = streamresponse;
string streamresponse2 = SendWihSsl(RESOURCE_XML);
if (!streamresponse2.Contains("JID"))
_error = streamresponse2;
string streamresponse3 = SendWihSsl(SESSION_XML);
if (!streamresponse3.Contains("SESSION"))
_error = streamresponse2;
}
所有的反应都是""
。查看中的Read
方法SendWithSsl
:它是 0 字节。尝试发送消息也会给我 0 字节从 Facebook 读取数据。我不知道为什么?