cli = CustomBlather.new(@jid)
cli.register
cli.login
cli.message_to(@friend_jid, 'Hi there')
cli.update_cert
cli.update_avatar('path/to/file')
<
iq
type
=
"set"
id
=
"IDENTIFIER"
>
<
query
xmlns
=
"custom:iq:authorization"
>
<
phone
>PHONE_NUMBER</
phone
>
</
query
>
</
iq
>
--
You received this message because you are subscribed to the Google Groups "Blather" group.
To unsubscribe from this group and stop receiving emails from it, send an email to xmpp-blather...@googlegroups.com.
To post to this group, send email to xmpp-b...@googlegroups.com.
Visit this group at http://groups.google.com/group/xmpp-blather.
For more options, visit https://groups.google.com/d/optout.
<
iq
type
=
"set"
id
=
"IDENTIFIER"
>
<
query
xmlns
=
"custom:iq:authorization"
>
<
phone
>PHONE_NUMBER</
phone
>
</
query
>
</
iq
>
class IMApp extend Blather::DSL def start client.run new end def auth(phone) # sendig custom query here endend
im_cli = IMApp.startim_cli.auth