google-talk

Can't connect to gtalk with python and xmpppy [closed]

帅比萌擦擦* 提交于 2020-01-16 08:50:32
问题 This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center. Closed 7 years ago . When try connect to gtalk I get this error: An error occurred while looking up _xmpp-client._tcp.talk.google.com The code is here: https://gist.github

Android smack 4.1 issue with connection

时光总嘲笑我的痴心妄想 提交于 2020-01-15 04:04:49
问题 I'm trying to make a connection with GoogleTalk in android using Smack . I've followed numerous tutorials examples on the internet yet still I can't seem to make it work. public static final String HOST = "talk.google.com"; public static final int PORT = 5222; public static final String SERVICE = "gmail.com"; public static final String USERNAME = "myemail@gmail.com"; public static final String PASSWORD = "mypassword"; My above credentials are correct... XMPPTCPConnectionConfiguration.Builder

Simple chat bot projects [closed]

谁说我不能喝 提交于 2020-01-11 15:30:12
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . What I want to do is build a simple bot which sends me a set of information stored in database to my messanger chat window [Chatting services are gTalk, Yahoo and other commonly used chating products] Also, it should be capable of accepting few predefined commands and replying them. Is there any opensource code

Google chat server archive (XEP-0136)

独自空忆成欢 提交于 2020-01-01 07:32:27
问题 I am looking for a way how to retrieve archive of chat messages from google server via using XEP-0136 standard, but I got these results just trying to ask for the feature. Request: <iq type="get"><pref xmlns="urn:xmpp:archive"/></iq> Response: <iq xmlns="jabber:client" type="error" to="myEmail@gmail.com/9FF72CA7"> <pref xmlns="urn:xmpp:archive"/> <error code="501" type="cancel"> <feature-not-implemented xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"/> </error> </iq> So it looks like google does

How to use smack with Openfire

给你一囗甜甜゛ 提交于 2020-01-01 05:19:08
问题 Hi I am planning to develop a chat client which can connect to gtalk facebook etc...I have decided to use the smack API along with openfire.. But I need little guidance as to how to use it with openfire server.. And does the openfire provide a basic UI like log in box chat window etc... I need to know how to plug or use smack with openfire Thanks:) 回答1: I have decided to use the smack API along with openfire.. But I need little guidance as to how to use it with openfire server.. What about

Google Talk XMPP - What is X-GOOGLE-TOKEN?

落花浮王杯 提交于 2019-12-23 12:23:13
问题 I'm trying to authenticate to Google Talk. The X-OAUTH2 mechanism, which uses OAuth2 tokens, is well documented. But what is X-GOOGLE-TOKEN and where is it documented? 回答1: Ah, found it. It's the deprecated ClientLogin API: Important: ClientLogin has been officially deprecated as of April 20, 2012. It will continue to work as per our deprecation policy, but we encourage you to migrate to OAuth 2.0 as soon as possible. 来源: https://stackoverflow.com/questions/12358429/google-talk-xmpp-what-is-x

Asmack 18 connection : google.com:5222 Exception: Could not connect to talk.google.com remote-server-timeout

喜欢而已 提交于 2019-12-23 00:52:34
问题 I am trying to use asmack 18 to connect to gtlak server for XMPP connection. public static final String HOST = "talk.google.com"; public static final int PORT = 5222; public static final String SERVICE = "gmail.com"; ConnectionConfiguration connConfig = new ConnectionConfiguration(HOST, PORT, SERVICE); XMPPConnection connection = new XMPPConnection(connConfig); try { //Connect to the server connection.connect(); connection.login("xxxxxxxx@gmail.com", "password"); // Set the status to

How to get Google TokenAuth working?

喜欢而已 提交于 2019-12-21 21:34:02
问题 I'm developing a youtube upload application and have some troubles with a specific part of authentication. ClientLogin so far, works and uploads are received by Youtube. However I have to redirect my users logged in to the Youtube-Frontpage. I've noticed that there's a possibility to login to gmail via a url: accounts.google.com/TokenAuth?auth=.... This should be possible in the exact same way for youtube. A login at "gmail" will include the cookies I'd need for youtube login. However, I'm

Ways to guess if C2DM is connected

喜夏-厌秋 提交于 2019-12-20 10:00:42
问题 I'm trying to place a best guess estimate as to whether C2DM messages can be received. I've created an application that relies on pushing information to a phone while it is physically inaccessible. I understand that C2DM isn't guaranteed delivery, but I'd at least like to know when the delivery of a message is even possible; when it isn't we fall back to our own push service (and can actually tell when we're connected). I've noticed C2DM on android will still issue auth tokens even when there

Ways to guess if C2DM is connected

故事扮演 提交于 2019-12-20 10:00:12
问题 I'm trying to place a best guess estimate as to whether C2DM messages can be received. I've created an application that relies on pushing information to a phone while it is physically inaccessible. I understand that C2DM isn't guaranteed delivery, but I'd at least like to know when the delivery of a message is even possible; when it isn't we fall back to our own push service (and can actually tell when we're connected). I've noticed C2DM on android will still issue auth tokens even when there