0
votes

I searched a lot for built web service like Google Talk, using Google Application Engine and Python.

For that first step is to check the status of online user on the Gmail. I found many code of it on python using XMPP library but it work only on python not using Google Application Engine.

There is also suggestion of using XMPP python API but for sending message we have to provide JID like [email protected] and message send.We can not send message from one email Id to another Email Id directly.

Now I want to perform Oauth authentication in python for gtalk at domain level can anyone tell me how to do this?

2
Sorry, what's wrong with the App Engine XMPP service which explicitly mentions Google Talk?Daniel Roseman

2 Answers

0
votes

I think you are confused. Python runs ON appengine. Also theres a working java xmpp example provided.

0
votes

You can only send messages from your app. There are two options: [email protected] or anything@your_app_id.appspotchat.com.

If you wanted to behave like an arbitrary xmpp client, you'll have to use a third party xmpp library running over HTTP and handle the authentication with the user's XMPP server.