观察 https://developers.facebook.com/docs/chat/
Platform API v2.0发行版已弃用该文档涵盖的服务和API。版本1.0被弃用后,chat.facebook.com将不再可用。
重要!阅读此书,您可能想做与该问题完全不同的事情。
我正在使用连接到Facebook Chat API的WebForms C#创建聊天。
我还研究了这个SO问题(以及所有链接)。由于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读取数据。我不知道为什么?