如何使用whatsapp API发送消息

时间:2015-03-11 09:49:59

标签: php whatsapp

我更新在我的项目中实现whatsApp API并且我下载了whatsapp API。我使用了ajaxDemo并在我的文件中设置了以下代码,但它无效,并在internal error文件中提供socket.php

的index.php

<?php
session_start();
$_SESSION["running"] = time();
$_SESSION["inbound"] = array();
$_SESSION["outbound"] = array();
$target = "+91**********"; //conversation target number/JID
?>

socket.php

require_once '../whatsprot.class.php';  //I got error this two lines
$target = @$_POST["target"];
$username = "+91**********";  //My whatsapp account number
$password = "*********";  //static password
$w = new WhatsProt($username, 0, "WhatsApi AJAX Demo", true);

$w->eventManager()->bind("onGetImage", "onGetImage");
$w->eventManager()->bind("onGetProfilePicture", "onGetProfilePicture");

$w->connect();
$w->loginWithPassword($password);

我认为socket.php文件存在任何连接问题。

请指出我的代码实际问题在哪里?

1 个答案:

答案 0 :(得分:0)

试试这个github issue寻求帮助

我在同一个过程中自我,但它适合我

文件index.php:

$target = "+91**********"; //phone number to send sms to-

在文件socket.php上:

$username = "+91**********";  //Your whatsapp account number 
$password = "L2gc4b1ztgbfR/bEoPrP10gqQyE=";  //static password 

静态密码是您运行exampleRegister.php的密码,您的密码应该不同,每次连接时都会更改,随之而来的是您的手机帐户将再次验证。

试图解决这个问题并做更像https://web.whatsapp.com/的事情。