2

http://dalibornasevic.com/posts/35-how-to-send-private-messages-with-facebook-apiに示されている指示に従って、友人にメッセージを送信し、現在コマンド ラインからテストしています。以下は私が使用しているコードです。Facebook アカウントを開いて送信済みメッセージを確認すると、コマンド ラインから送信しようとしているメッセージが表示されません。私は自分が犯している間違いを理解していません。

1.9.3-p194 :017 >   require 'xmpp4r_facebook'
 => true 

1.9.3-p194 :00 3  >   id = '-<my facebook id>@chat.facebook.com'
=> "-<my facebook id>@chat.facebook.com"

1.9.3-p194 :00 4 > to = '-<friend facebook id>@chat.facebook.com'
=> "-< friend's facebook id>@chat.facebook.com"

1.9.3-p194 :00 5 > body = "hello, Im not spam!"
=> "hello, Im not spam!"

1.9.3-p194 :00 6 > subject = 'message from ruby'
=> "message from ruby"

1.9.3-p194 :00 7 > message = Jabber::Message.new to, body
=> <message xmlns='jabber:client' to='-<friend facebook id>@chat.facebook.com'> ... </>

1.9.3-p194 :00 8 > message.subject = subject
=> "message from ruby"

1.9.3-p194 :00 9 >
1.9.3-p194 :010 >   client = Jabber::Client.new Jabber::JID.new(id)
=> #<Jabber::Client:0x007fc47e4d8498 @fd=nil, @status=1, @xmlcbs=#<Jabber::CallbackList:0x007fc47e4d8470 @list=[]>, @stanzacbs=#<Jabber::CallbackList:0x007fc47e4d8420 @list=[]>, @messagecbs=#<Jabber::CallbackList:0x007fc47e4d83d0 @list=[]>, @iqcbs=#<Jabber::CallbackList:0x007fc47e4d8380 @list=[]>, @presencecbs=#<Jabber::CallbackList:0x007fc47e4d8330 @list=[]>, @send_lock=#<Mutex:0x007fc47e4d82e0>, @last_send=2012-10-12 23:29:34 +0530, @exception_block=nil, @tbcbmutex=#<Mutex:0x007fc47e4d8290>, @threadblocks=[], @wakeup_thread=nil, @streamid=nil, @streamns="jabber:client", @features_sem=#<Jabber::Semaphore:0x007fc47e4d8218 @tickets=0, @lock=#<Mutex:0x007fc47e4d81f0>, @cond=#<ConditionVariable:0x007fc47e4d81c8 @waiters=[], @waiters_mutex=#<Mutex:0x007fc47e4d8178>>>, @parser_thread=nil, @processing=0, @host=nil, @port=nil, @allow_tls="constant", @tls=false, @ssl_capath=nil, @ssl_verifycb=nil, @features_timeout=10, @keepalive_interval=60, @use_ssl=false, @jid=-<my facebook id>@chat.facebook.com>

1.9.3-p194 :011 > client.connect
=> #<Jabber::Client:0x007fc47e4d8498 @fd=#<OpenSSL::SSL::SSLSocket:0x007fc47c852260>, @status=2, @xmlcbs=#<Jabber::CallbackList:0x007fc47e4d8470 @list=[]>, @stanzacbs=#<Jabber::CallbackList:0x007fc47e4d8420 @list=[]>, @messagecbs=#<Jabber::CallbackList:0x007fc47e4d83d0 @list=[]>, @iqcbs=#<Jabber::CallbackList:0x007fc47e4d8380 @list=[]>, @presencecbs=#<Jabber::CallbackList:0x007fc47e4d8330 @list=[]>, @send_lock=#<Mutex:0x007fc47e4d82e0>, @last_send=2012-10-12 23:29:35 +0530, @exception_block=nil, @tbcbmutex=#<Mutex:0x007fc47e4d8290>, @threadblocks=[], @wakeup_thread=nil, @streamid="10BAB5BB", @streamns="jabber:client", @features_sem=#<Jabber::Semaphore:0x007fc47e4d8218 @tickets=0, @lock=#<Mutex:0x007fc47e4d81f0>, @cond=#<ConditionVariable:0x007fc47e4d81c8 @waiters=[], @waiters_mutex=#<Mutex:0x007fc47e4d8178>>>, @parser_thread=#<Thread:0x007fc47c852008 sleep>, @processing=0, @host="chat.facebook.com", @port=5222, @allow_tls="constant", @tls=true, @ssl_capath=nil, @ssl_verifycb=nil, @features_timeout=10, @keepalive_interval=60, @use_ssl=false, @jid=santhosh.vangapelli@chat.facebook.com, @socket=#<OpenSSL::SSL::SSLSocket:0x007fc47c852260>, @stream_mechanisms=["X-FACEBOOK-PLATFORM", "DIGEST-MD5"], @stream_features={}, @parser=#<Jabber::StreamParser:0x007fc47c852030 @stream=#<OpenSSL::SSL::SSLSocket:0x007fc47c852260>, @listener=#<Jabber::Client:0x007fc47e4d8498 ...>, @current=nil, @started=true>, @keepaliveThread=#<Thread:0x007fc47c899868 run>>
1.9.3-p194 :012 > client.auth_sasl(Jabber::SASL::XFacebookPlatform.new(client, '<App ID>', '<access token>', 'App Secret'), nil) => <iq xmlns='jabber:client' type='result' id='2071'> ... </>

1.9.3-p194 :013 > client.send message
=> nil

1.9.3-p194 :014 > client.close
=> #<Thread:0x007fc47c899868 dead>
4

1 に答える 1

2

この宝石のフォーマットは

-<id>@chat.facebook.comtoと_id

いいえ

<id>@chat.facebook.com

最初のダッシュに注意してください-(理由はわかりません)

なのでその後の対応は

message = Jabber::Message.new to, body

する必要があります

<message xmlns='jabber:client' to='-<friend facebook id>@chat.facebook.com'> ... </>

ユーザー名が交換可能かどうかはわかりません。そのため、Facebook ユーザーの ID 番号を使用する必要があります。Chat API を使用できるのは、Facebook の友達との通信のみであり、Gmail の誰とも通信できないと思います。Facebook メッセージは、Facebook チャットとはまったく異なるプラットフォームです。

たとえば、プロファイルがfacebook.com/zuckで、ID が である4場合、ID を使用する必要がありto = '-4@chat.facebook.com'ます。

于 2012-10-12T18:42:10.533 に答える