You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to send some extra parameters to xmpp server. but not getting those extra parameters in msg.
I'm trying with this method which is inside jaxl.php.
public function send_msg($to,$body,$sender_id,$id,$xmpp_msg_attribute,$thread=null, $subject=null) {
$msg = new XMPPMsg(
array(
'id'=>$id,
'sender_id'=>$sender_id,
'type'=>'normal',
'to'=>$to,
'from'=>$this->full_jid->to_string(),
'attributes'=> 'extra information',
),
$body,
$thread,
$subject
);
$this->send($msg);
}
using jaxl 3.
I want to send some extra parameters to xmpp server. but not getting those extra parameters in msg.
I'm trying with this method which is inside jaxl.php.
but output sending without extra parameters:
I didn't found attributes , sender_id . i also tried changing attributes -> attrs.
anything i'm doing wrong here?
The text was updated successfully, but these errors were encountered: