Configuer whatsapp via Agile messenger - HD2 Windows Mobile 6.5 Themes and Apps

Hi,
does someone know how to configure "whatsapp" via Agile messenger ?
The port is: 5222 or 5223 ?
the server is: 50.22.227.220 or different ?
How to convert What's up phone number to Jabber user ?
[email protected] or vcountrycodePhonenumber ?
How to set password ?
Thanks for help.

Also interested in running Whatsapp in WM...
Found this piece of information:
"Los datos de XMPP son enviados a bin-short.whatsapp.net bajo el puerto 5222."
(XMPP data are sent to bin-short.whatsapp.net under port 5222)
in this address http://www.securitybydefault.com/2012/01/whatsapp-al-descubierto.html (in spanish)
Anyway, it seems that is a little more complex than that. I've just found a thread of a bunch of serious people trying to port whatsapp to meego/maemo, and it seems that they had (almost?) figured how to do that. See at http://talk.maemo.org/showthread.php?t=82384. Lot of information about user, passwd, registration code... I suposse that the specifics of maemo are not applicables to a Jabber or XMPP client running under WM, but some considerations they make about how the sessions work can be importants...

Related

Oz Instant IM for Tmobile w/MSN

Hi there, I have been looking to find a version of OZ that will work with my 8525 on T-Mobile USA, but also that has MSN instead of ICQ. Some things of note:
I know Oz uses SMS, this unfortunately fits my needs.
I have found a signed Oz.cab for tmobile but it has ICQ in place of MSN, and I need MSN.
I have seen other requests for this information but they all seem to be archived.
Some of these threads mention Signed_Move_IM_Link.sa.CAB in conjuction with the signed oz cab.. they dont say what it is or what it does, and none of the links for this file or the extended rom it came from seem to be valid.
Any help at all would be greatly appreciated. Thank you in advance for your time and consideration.
ALSO! if you have any insights on a beter *SMS* type instant message program that has AIM, MSN and perhaps maybe Gtalk, that also could help

[Q] click-and-dial fonction in email ?

Good morning.
I wonder whether it is an Android problem, a number format problem, a language problem (Nexus S is my first Android device ; language French) : I can't get a click-and-dial fonction in email.
I frequently used that in Windows Mobile to call directly somebody, and it was very useful. The only way I found for now is CopyNDial app, which needs to first select the number line.
Any suggestion to activate this very useful click-and-dial fonction in email (as in Calendar for example) ?
Thanks
i know in SGS it has that function build in
but seems like stock Android on the SNS doesn't seem to have that option
I found a solution with a nice and free email client named MailDroid.
Most of phone numbers within mails are now clickable.
But I don't understand why those coming from some expeditors are still non clickable... Any idea ?

Facebook account

Hi all;
One friend asked me to create some facebook accounts because he is not able to do it (he is not a boss with the PC…).
Ok, no problem, I think: some new email accounts, different names and surnames and everything is ok.
After the first account facebook ask me for the confirmation with an sms, maybe is my IP address?
I change email, change IP, delete the cookies but it is the same, it always ask me a phone number and the confirmation by Sms.
If I change browser I can create a new one but at the second the problem appear again.
I reset the pc but nothing: I think that if I change the pc maybe I will have the same problem.
At this point it is a personal issue for me : how can facebook understand that it always me that create a new account and not another person that is creating his first account?
Do you know which parameter facebook use to ask or not this phone number?
Another doubt: if you are in an internet point how do you connect? everyone must insert his mobile number?
Thank you for your help.
__________________
original gifts ideas (idea regalo on espanol or oryginalne prezenty on polish), pensieri vita

[Source code] WhatsAPI: WhatsApp for other platforms.

https://github.com/venomous0x/WhatsAPI
What is WhatsApp?
According to the company:
“WhatsApp Messenger is a cross-platform mobile messenger that replaces SMS and works through the existing internet data plan of your device. WhatsApp is available for iPhone, BlackBerry, Android, Windows Phone, Nokia Symbian60 & S40 phones. Because WhatsApp Messenger uses the same internet data plan that you use for email and web browsing, there is no cost to message and stay in touch with your friends.”
Click to expand...
Click to collapse
Late 2011 numbers: 1 billion messages per day, ~20 million users.
Modified XMPP
WhatsApp uses some sort of customized XMPP server, named internally as FunXMPP, which is basically some extended proprietary version.
Login procedure
Much like XMPP, WhatsApp uses JID (jabber id) and password to successfully login to the service. The password is hashed and happened to be an MD5’d, reversed-version of the mobile’s IMEI (International Mobile Equipment Identity) or equivalent unique ID, stored in servers upon account creation and used transparently everytime the client connects the server.
The JID is a concatenation between your country’s code and mobile number.
Initial login uses Digest Access Authentication.
Message sending
Messages are basically sent as TCP packets, following WhatsApp’s own format (unlike what’s defined in XMPP RFCs).
Despite the usage of SSL-like communication, messages are being sent in plain-text format.
Multimedia Message sending
Photos, Videos and Audio files shared with WhatsApp contacts are HTTP-uploaded to a server before being sent to the recipient(s) along with Base64 thumbnail of media file (if applicable) along with the generated HTTP link as the message body.
FAQ
What’s with the hex chars floating all over the code?
Mostly WhatsApp’s proprietary control chars/commands, or formatted data according to their server’s specifications, stored in predefined dictionaries within the clients.
What’s your future development plans?
We don’t have any.
Would it run over the web?
We’ve tested a slightly-modified version on top of Tornado Web Server and worked like a charm, however, building a chat client is a bit tricky, do your research.
Can I receive chats?
Indeed, using the same socket-receiving mechanism. But you have to parse the incoming data. Parsing functions aren’t included in this release, maybe in the next one?
I think the code is messy.
It’s working.
How can I obtain my password?
It depends on your platform, with Android for example, you can use TelephonyManager
Code:
TelephonyManager tm = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
tm.getDeviceId();
With the sufficent permissions of course
Code:
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
NOTES
This proof of concept is extensible to contain every feature that make a fully-fledged client, similar to the official ones, actually could be even better.
During the two weeks of analysis of service mechanisms, we stumbled upon serious design and security flaws (they fixed some of them since 2011). For a company with such massive user base, we expected better practises and engineering.
Perfectly working as PHP and JAVA ports.
License
MIT - refer to the source code for the extra line.
Venomous
Team of Bahraini Developers.
Ahmed Moh'd and Ali Hubail (@hubail) contributed to this release.
I really would like to know whats your debugging strategy in this case? I'm still not able to capture the traffic from my Android 4 VirtualMachine in order to decypher the ssl traffic.
I documented my setup on my blog, just search for "WhatsApp für Android 4.0.X-X86 ICS auf VirtualBox" on Google.
Could you please provide some infos on your setup?
Except for some requests ( Syncing and Status update) , all requests go on plain text ( although they use SSL port , they still send in plain text )
onnsoft said:
I really would like to know whats your debugging strategy in this case? I'm still not able to capture the traffic from my Android 4 VirtualMachine in order to decypher the ssl traffic.
I documented my setup on my blog, just search for "WhatsApp für Android 4.0.X-X86 ICS auf VirtualBox" on Google.
Could you please provide some infos on your setup?
Click to expand...
Click to collapse
WebOS port!!!
Sent from my R800x using XDA
Looks like Whatsapp is quite secure...
Swypesation
Isn't there anyway to hack it???
Sent from my MT11i using xda premium
google it

Simple android endpoint app

I have this particular problem: I don't have a phone, but I have a Skype phone number, SMS is very convenient but Skype cannot receive SMS from phones however it can send SMS to phones. So I send my friends texts but it is one way.
I'm a web developer, not a platform developer <- much harder in my opinion, syntax
So, if I created a database to store messages, users, and used that as an API and I wanted a simple app with a text box that you can write into and receive, with a send button / search for user/contact, how hard is that to do for all three platforms? Connect to the database then communicate with this app as if it was a native SMS client.
Maybe it already exists...
I think it's a good idea.
Although I should just get a phone ha
Any thoughts would be appreciated, maybe I'll make it myself. Android then Windows then Apple

Categories

Resources