mrreboot Posted January 22, 2015 Report Posted January 22, 2015 PHP Script to send and receive messages onWhatsAppI have been reading many tutorials for sending and receiving WhatsApp Messages via PHP but there is not a single Article Which explains properly with Steps that How To retrieve Your WhatsApp password Which is created and Stored when you create a WhatsApp Account on the WhatsApp Server which is the main Challenge as of now in other Articles.Thanks To this tool Which has Made 50% of the work Easy. https://github.com/shirioko/WARTOkay So we will Quickly go through the Steps for WhatsApp Registration Tool : Go To the link https://github.com/shirioko/WART Download The Whole project by Clicking Clone to Desktop Run the WART-1.7.3.0 Exe FileWARTEnter Phone Number with Country Code (e.g. India Number : 91xxxxxxxxxx)P.s. Do not put any Special Symbol like (+91) for IndiaClick on Request Code and You will Receive a Code from WhatsApp on the Entered Mobile Number.Now Verify that Code in 2nd Step and That’s it . You are here . Your password will Appear.P.s. Do not Share your password with Anyone Because it Can be used in loop for any Kind of messages.okay Now we are done with 50% of the task .Now we need to write the php Script Which will Send Messages to WhatsApp Registered Number.You will need 2 things for Sending Messages to WhatsApp through PHP : Username (WHICH IS YOUR MOBILE NUMBER WITH COUNTRY CODE) : 91xxxxxxxxxxx Password (Which You got From The WART.EXE TOOLAlright Sparky Lets Get this Done…..<?phprequire_once ‘./src/whatsprot.class.php’;$username = “919xxxxxxxxx”; //Mobile Phone prefixed with country code so for india it will be 91xxxxxxxx$password = “your password”;$w = new WhatsProt($username, 0, “Mayank Grover Blog”, true); //Name your application by replacing “WhatsApp Messaging”$w->connect();$w->loginWithPassword($password);$target = ’91xxxxxxxxxxx’; //Target Phone,reciever phone$message = ‘Hello User !! This is a Tutorial for sending messages via php to WhatsApp Account’;$w->SendPresenceSubscription($target); //Let us first send presence to user$w->sendMessage($target,$message ); // Send Messageecho “Message Sent Successfully”;?>So Everything is Quite Clear in the above Script i.e. You need to set your Application Details Username as Mobile Number password Which you got from WART Tool Target as your Target Mobile Number and Lastly The message(Plain Text Which you need to send).Okay Now I know many Questions are Coming in your mind. In first line Require src/whatsprot.class.php What is This. ???You Need to Download the WhatsApi from this Link . There You Will find the srcdirectory with all the source files. Can we only Send Plain Text messages Or media like Images and Videos???Yes we can send media file Also.So Next I will be writing php script to send Media file To any WhatsApp Account.SOURCE Quote