tgalal / yowsup

The WhatsApp lib
GNU General Public License v3.0
7.05k stars 2.22k forks source link

Auth Error, reason not-authorized #1387

Closed jerryames closed 8 years ago

jerryames commented 8 years ago

Nothing changed in several months. suddently, this message appears:

general: Login Failed, reason: not-authorized Auth Error, reason not-authorized

Anyone knows how to solve this?

techcanvas commented 8 years ago

I am install lyk Pip install yowsup2

On Sunday, 27 March 2016, sowerkoku notifications@github.com wrote:

use git clone https://github.com/tgalal/yowsup.git

— You are receiving this because you were mentioned. Reply to this email directly or view it on GitHub https://github.com/tgalal/yowsup/issues/1387#issuecomment-202079685

Regards

Neeraj Goel +91 7838872866

sowerkoku commented 8 years ago

or use: python setup.py install

parag commented 8 years ago

This is encryption type pkmsg version 2. Whatsapp has done a new encryption release.

In yowsup/layers/axolotl/layer.py, change unpadV2Plaintext which is

def unpadV2Plaintext(self, v2plaintext): if len(v2plaintext) < 128: return v2plaintext[2:-1] else: # < 128 * 128 return v2plaintext[3: -1] to

def unpadV2Plaintext(self, v2plaintext): end = -ord(v2plaintext[-1]) # length of the left padding length,consumed = self.decodeInt7bit(v2plaintext[1:]) return v2plaintext[1+consumed:end]

What is the python version you are using?

On Sun, Mar 27, 2016 at 8:21 PM, neeraj360 notifications@github.com wrote:

I am install lyk Pip install yowsup2

On Sunday, 27 March 2016, sowerkoku notifications@github.com wrote:

use git clone https://github.com/tgalal/yowsup.git

— You are receiving this because you were mentioned. Reply to this email directly or view it on GitHub https://github.com/tgalal/yowsup/issues/1387#issuecomment-202079685

Regards

Neeraj Goel +91 7838872866

— You are receiving this because you commented. Reply to this email directly or view it on GitHub https://github.com/tgalal/yowsup/issues/1387#issuecomment-202079862

Parag Arora http://twitter.com/paragarora http://www.paragarora.com +91-9972824354

techcanvas commented 8 years ago

Hi Now getting below error ,i am using 2.7 python

whatsapp_reciever(1)

File "run.py", line 50, in whatsapp_reciever stack.loop() #this is the program mainloop File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup/stacks/yowstack.py", line 195, in loop asyncore.loop(_args, *_kwargs) File "/usr/lib/python2.7/asyncore.py", line 216, in loop poll_fun(timeout, map) File "/usr/lib/python2.7/asyncore.py", line 156, in poll read(obj) File "/usr/lib/python2.7/asyncore.py", line 87, in read obj.handle_error() File "/usr/lib/python2.7/asyncore.py", line 83, in read obj.handle_read_event() File "/usr/lib/python2.7/asyncore.py", line 449, in handle_read_event self.handle_read() File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup/layers/network/layer.py", line 86, in handle_read self.receive(data) File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup/layers/network/layer.py", line 94, in receive self.toUpper(data) File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup/layers/init.py", line 59, in toUpper self.upper.receive(data) File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup/layers/stanzaregulator/layer.py", line 28, in receive self.processReceived() File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup/layers/stanzaregulator/layer.py", line 48, in processReceived self.toUpper(oneMessageData) File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup/layers/__init.py", line 59, in toUpper self.upper.receive(data) File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup/layers/auth/layer_crypt.py", line 63, in receive self.toUpper(payload) File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup/layers/__init.py", line 59, in toUpper self.upper.receive(data) File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup/layers/coder/layer.py", line 35, in receive self.toUpper(node) File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup/layers/__init.py", line 59, in toUpper self.upper.receive(data) File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup/layers/logger/layer.py", line 14, in receive self.toUpper(data) File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup/layers/__init.py", line 59, in toUpper self.__upper.receive(data) File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup/layers/axolotl/layer.py", line 117, in receive self.onMessage(protocolTreeNode) File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup/layers/axolotl/layer.py", line 139, in onMessage self.handleEncMessage(protocolTreeNode) File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup/layers/axolotl/layer.py", line 224, in handleEncMessage self.handleWhisperMessage(node) File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup/layers/axolotl/layer.py", line 277, in handleWhisperMessage plaintext = self.unpadV2Plaintext(plaintext) File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup/layers/axolotl/layer.py", line 291, in unpadV2Plaintext length,consumed = self.decodeInt7bit(v2plaintext[1:]) AttributeError: 'YowAxolotlLayer' object has no attribute 'decodeInt7bit'

Regards

Neeraj Goel +91 7838872866

On 27 March 2016 at 20:34, sowerkoku notifications@github.com wrote:

that happens with group messages . to solve that occupy the following: messages will have to go with the " moxie " (disable encryption E2E )

to send group messages should only add the option -M

example: ./yowsup-cli demos -M -c xx.config -y or ./yowsup-cli demos -M -c xx.config -s phone "message"

— You are receiving this because you were mentioned. Reply to this email directly or view it on GitHub https://github.com/tgalal/yowsup/issues/1387#issuecomment-202081637

jlguardi commented 8 years ago

Clone jlguardi/master or jlguardi/encrypted_media where this parches are applied (master uses s40 and the branch android env)

ghost commented 8 years ago

@jlguardi On my Raspberry Pi i have done 8 weeks before: git clone git://github.com/tgalal/yowsup.git cd yowsup python setup.py install This version stops running one week ago (Auth Error, reason not-authorized). Is this the right way to update this version (android or master, confused)?: setup fork in remotes sources: git remote add jlguardi https://github.com/jlguardi/yowsup.git update: git pull jlguardi Android_2.12.440 merge: git merge jlguardi/Android_2.12.440

jlguardi commented 8 years ago

@horohome Use my master instead which has more improvements.

thundergreen commented 8 years ago

How is the progress with receiving messages? Is there an update somewhere what has been fixed yet?

Thorsten Fröhlich Am 27.03.2016 19:49 schrieb "jlguardi" notifications@github.com:

@horohome https://github.com/horohome Use my master instead which has more improvements.

— You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub https://github.com/tgalal/yowsup/issues/1387#issuecomment-202113169

ghost commented 8 years ago

@jlguardi Should I remove the old version before?

jlguardi commented 8 years ago

@horohome No, just merge.

chenwayne commented 8 years ago

@rami-dabain Hey Rami My stack is like this:

layers = ( SlientLayerWithCredentials, (YowAuthenticationProtocolLayer, YowMessagesProtocolLayer, YowReceiptProtocolLayer, YowAckProtocolLayer, YowMediaProtocolLayer, YowIqProtocolLayer, YowCallsProtocolLayer ),

YowAxolotlLayer,

    YowLoggerLayer,
    YowCoderLayer,
    YowCryptLayer,
    YowStanzaRegulator,
    YowNetworkLayer,
)

how should I change?

techcanvas commented 8 years ago

Hi jlguardi https://github.com/jlguardi

@jlguardi https://github.com/jlguardi I followed below steps but i am getting error.

git clone https://github.com/jlguardi/yowsup.git python setup.py install

Error;

Regards

Neeraj Goel +91 7838872866

On 28 March 2016 at 10:06, Wayne notifications@github.com wrote:

@rami-dabain https://github.com/rami-dabain Hey Rami My stack is like this:

layers = ( SlientLayerWithCredentials, (YowAuthenticationProtocolLayer, YowMessagesProtocolLayer, YowReceiptProtocolLayer, YowAckProtocolLayer, YowMediaProtocolLayer, YowIqProtocolLayer, YowCallsProtocolLayer ),

YowAxolotlLayer,

YowLoggerLayer, YowCoderLayer, YowCryptLayer, YowStanzaRegulator, YowNetworkLayer,

)

how should I change?

— You are receiving this because you were mentioned. Reply to this email directly or view it on GitHub https://github.com/tgalal/yowsup/issues/1387#issuecomment-202226490

techcanvas commented 8 years ago

Hi jlguardi https://github.com/jlguardi

yowsup-cli demos -c yow.config -y -d

(yow)neeraj@devbox:~/yutility$ yowsup-cli demos -c yow.config -y -d Traceback (most recent call last): File "/home/neeraj/.virtualenvs/yow/bin/yowsup-cli", line 4, in import('pkg_resources').run_script('yowsup2==2.4.48', 'yowsup-cli') File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/pkg_resources/init.py", line 726, in run_script self.require(requires)[0].run_script(script_name, ns) File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/pkg_resources/init.py", line 1484, in run_script exec(code, namespace, namespace) File "/home/neeraj/.virtualenvs/yow/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/EGG-INFO/scripts/yowsup-cli", line 323, in if not parser.process(): File "/home/neeraj/.virtualenvs/yow/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/EGG-INFO/scripts/yowsup-cli", line 227, in process self.startCmdline() File "/home/neeraj/.virtualenvs/yow/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/EGG-INFO/scripts/yowsup-cli", line 249, in startCmdline from yowsup.demos import cli File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/demos/cli/init.py", line 1, in from .stack import YowsupCliStack File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/demos/cli/stack.py", line 2, in from .layer import YowsupCliLayer File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/demos/cli/layer.py", line 2, in from yowsup.layers.interface import YowInterfaceLayer, ProtocolEntityCallback File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/interface/init.py", line 1, in from .interface import YowInterfaceLayer, ProtocolEntityCallback File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/interface/interface.py", line 7, in from yowsup.layers.axolotl.layer import YowAxolotlLayer File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/axolotl/init.py", line 1, in from .layer import YowAxolotlLayer File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/axolotl/layer.py", line 26, in from axolotl.axolotladdress import AxolotlAddress ImportError: No module named axolotladdress

Regards

Neeraj Goel +91 7838872866

On 28 March 2016 at 10:25, Neeraj Goel neeraj30goel@gmail.com wrote:

Hi jlguardi https://github.com/jlguardi

@jlguardi https://github.com/jlguardi I followed below steps but i am getting error.

git clone https://github.com/jlguardi/yowsup.git python setup.py install

Error;

  • File "run.py", line 4, in from layer import EchoLayer File "/home/neeraj/yutility/layer.py", line 12, in from yowsup.layers.interface import YowInterfaceLayer, ProtocolEntityCallback File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/interface/init.py", line 1, in from .interface import YowInterfaceLayer, ProtocolEntityCallback File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/interface/interface.py", line 7, in from yowsup.layers.axolotl.layer import YowAxolotlLayer File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/axolotl/init.py", line 1, in from .layer import YowAxolotlLayer File "/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/axolotl/layer.py", line 26, in from axolotl.axolotladdress import AxolotlAddressImportError: No module named axolotladdress*

Regards

Neeraj Goel +91 7838872866

On 28 March 2016 at 10:06, Wayne notifications@github.com wrote:

@rami-dabain https://github.com/rami-dabain Hey Rami My stack is like this:

layers = ( SlientLayerWithCredentials, (YowAuthenticationProtocolLayer, YowMessagesProtocolLayer, YowReceiptProtocolLayer, YowAckProtocolLayer, YowMediaProtocolLayer, YowIqProtocolLayer, YowCallsProtocolLayer ),

YowAxolotlLayer,

YowLoggerLayer, YowCoderLayer, YowCryptLayer, YowStanzaRegulator, YowNetworkLayer,

)

how should I change?

— You are receiving this because you were mentioned. Reply to this email directly or view it on GitHub https://github.com/tgalal/yowsup/issues/1387#issuecomment-202226490

msshapira commented 8 years ago

looks like @jlguardi is using the latest python-axolotl master. Need to update to it...

On Mon, Mar 28, 2016 at 7:59 AM, neeraj360 notifications@github.com wrote:

Hi jlguardi https://github.com/jlguardi

yowsup-cli demos -c yow.config -y -d

(yow)neeraj@devbox:~/yutility$ yowsup-cli demos -c yow.config -y -d Traceback (most recent call last): File "/home/neeraj/.virtualenvs/yow/bin/yowsup-cli", line 4, in import('pkg_resources').run_script('yowsup2==2.4.48', 'yowsup-cli') File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/pkg_resources/init.py", line 726, in run_script self.require(requires)[0].run_script(script_name, ns) File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/pkg_resources/init.py", line 1484, in run_script exec(code, namespace, namespace) File

"/home/neeraj/.virtualenvs/yow/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/EGG-INFO/scripts/yowsup-cli", line 323, in if not parser.process(): File

"/home/neeraj/.virtualenvs/yow/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/EGG-INFO/scripts/yowsup-cli", line 227, in process self.startCmdline() File

"/home/neeraj/.virtualenvs/yow/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/EGG-INFO/scripts/yowsup-cli", line 249, in startCmdline from yowsup.demos import cli File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/demos/cli/init.py", line 1, in from .stack import YowsupCliStack File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/demos/cli/stack.py", line 2, in from .layer import YowsupCliLayer File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/demos/cli/layer.py", line 2, in from yowsup.layers.interface import YowInterfaceLayer, ProtocolEntityCallback File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/interface/init.py", line 1, in from .interface import YowInterfaceLayer, ProtocolEntityCallback File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/interface/interface.py", line 7, in from yowsup.layers.axolotl.layer import YowAxolotlLayer File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/axolotl/init.py", line 1, in from .layer import YowAxolotlLayer File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/axolotl/layer.py", line 26, in from axolotl.axolotladdress import AxolotlAddress ImportError: No module named axolotladdress

Regards

Neeraj Goel +91 7838872866

On 28 March 2016 at 10:25, Neeraj Goel neeraj30goel@gmail.com wrote:

Hi jlguardi https://github.com/jlguardi

@jlguardi https://github.com/jlguardi I followed below steps but i am getting error.

git clone https://github.com/jlguardi/yowsup.git python setup.py install

Error;

  • File "run.py", line 4, in from layer import EchoLayer File "/home/neeraj/yutility/layer.py", line 12, in from yowsup.layers.interface import YowInterfaceLayer, ProtocolEntityCallback File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/interface/init.py", line 1, in from .interface import YowInterfaceLayer, ProtocolEntityCallback File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/interface/interface.py", line 7, in from yowsup.layers.axolotl.layer import YowAxolotlLayer File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/axolotl/init.py", line 1, in from .layer import YowAxolotlLayer File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/axolotl/layer.py", line 26, in from axolotl.axolotladdress import AxolotlAddressImportError: No module named axolotladdress*

Regards

Neeraj Goel +91 7838872866

On 28 March 2016 at 10:06, Wayne notifications@github.com wrote:

@rami-dabain https://github.com/rami-dabain Hey Rami My stack is like this:

layers = ( SlientLayerWithCredentials, (YowAuthenticationProtocolLayer, YowMessagesProtocolLayer, YowReceiptProtocolLayer, YowAckProtocolLayer, YowMediaProtocolLayer, YowIqProtocolLayer, YowCallsProtocolLayer ),

YowAxolotlLayer,

YowLoggerLayer, YowCoderLayer, YowCryptLayer, YowStanzaRegulator, YowNetworkLayer,

)

how should I change?

— You are receiving this because you were mentioned. Reply to this email directly or view it on GitHub https://github.com/tgalal/yowsup/issues/1387#issuecomment-202226490

— You are receiving this because you commented. Reply to this email directly or view it on GitHub https://github.com/tgalal/yowsup/issues/1387#issuecomment-202233679

techcanvas commented 8 years ago

Hi msshapira

How to update this ???

Regards

Neeraj Goel +91 7838872866

On 28 March 2016 at 11:26, msshapira notifications@github.com wrote:

looks like @jlguardi is using the latest python-axolotl master. Need to update to it...

On Mon, Mar 28, 2016 at 7:59 AM, neeraj360 notifications@github.com wrote:

Hi jlguardi https://github.com/jlguardi

yowsup-cli demos -c yow.config -y -d

(yow)neeraj@devbox:~/yutility$ yowsup-cli demos -c yow.config -y -d Traceback (most recent call last): File "/home/neeraj/.virtualenvs/yow/bin/yowsup-cli", line 4, in import('pkg_resources').run_script('yowsup2==2.4.48', 'yowsup-cli') File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/pkg_resources/init.py", line 726, in run_script self.require(requires)[0].run_script(script_name, ns) File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/pkg_resources/init.py", line 1484, in run_script exec(code, namespace, namespace) File

"/home/neeraj/.virtualenvs/yow/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/EGG-INFO/scripts/yowsup-cli", line 323, in if not parser.process(): File

"/home/neeraj/.virtualenvs/yow/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/EGG-INFO/scripts/yowsup-cli", line 227, in process self.startCmdline() File

"/home/neeraj/.virtualenvs/yow/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/EGG-INFO/scripts/yowsup-cli", line 249, in startCmdline from yowsup.demos import cli File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/demos/cli/init.py", line 1, in from .stack import YowsupCliStack File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/demos/cli/stack.py", line 2, in from .layer import YowsupCliLayer File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/demos/cli/layer.py", line 2, in from yowsup.layers.interface import YowInterfaceLayer, ProtocolEntityCallback File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/interface/init.py", line 1, in from .interface import YowInterfaceLayer, ProtocolEntityCallback File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/interface/interface.py", line 7, in from yowsup.layers.axolotl.layer import YowAxolotlLayer File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/axolotl/init.py", line 1, in from .layer import YowAxolotlLayer File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/axolotl/layer.py", line 26, in from axolotl.axolotladdress import AxolotlAddress ImportError: No module named axolotladdress

Regards

Neeraj Goel +91 7838872866

On 28 March 2016 at 10:25, Neeraj Goel neeraj30goel@gmail.com wrote:

Hi jlguardi https://github.com/jlguardi

@jlguardi https://github.com/jlguardi I followed below steps but i am getting error.

git clone https://github.com/jlguardi/yowsup.git python setup.py install

Error;

  • File "run.py", line 4, in from layer import EchoLayer File "/home/neeraj/yutility/layer.py", line 12, in from yowsup.layers.interface import YowInterfaceLayer, ProtocolEntityCallback File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/interface/init.py",

line 1, in from .interface import YowInterfaceLayer, ProtocolEntityCallback File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/interface/interface.py",

line 7, in from yowsup.layers.axolotl.layer import YowAxolotlLayer File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/axolotl/init.py",

line 1, in from .layer import YowAxolotlLayer File

"/home/neeraj/.virtualenvs/yow/local/lib/python2.7/site-packages/yowsup2-2.4.48-py2.7.egg/yowsup/layers/axolotl/layer.py",

line 26, in from axolotl.axolotladdress import AxolotlAddressImportError: No module named axolotladdress*

Regards

Neeraj Goel +91 7838872866

On 28 March 2016 at 10:06, Wayne notifications@github.com wrote:

@rami-dabain https://github.com/rami-dabain Hey Rami My stack is like this:

layers = ( SlientLayerWithCredentials, (YowAuthenticationProtocolLayer, YowMessagesProtocolLayer, YowReceiptProtocolLayer, YowAckProtocolLayer, YowMediaProtocolLayer, YowIqProtocolLayer, YowCallsProtocolLayer ),

YowAxolotlLayer,

YowLoggerLayer, YowCoderLayer, YowCryptLayer, YowStanzaRegulator, YowNetworkLayer,

)

how should I change?

— You are receiving this because you were mentioned. Reply to this email directly or view it on GitHub https://github.com/tgalal/yowsup/issues/1387#issuecomment-202226490

— You are receiving this because you commented. Reply to this email directly or view it on GitHub https://github.com/tgalal/yowsup/issues/1387#issuecomment-202233679

— You are receiving this because you were mentioned. Reply to this email directly or view it on GitHub https://github.com/tgalal/yowsup/issues/1387#issuecomment-202244931

jlguardi commented 8 years ago

I'm using https://github.com/tgalal/python-axolotl/tree/develop

techcanvas commented 8 years ago

Thnks

I am getting below error ERROR:yowsup.layers.axolotl.layer:No valid sessionsBad Mac! DEBUG:yowsup.layers.logger.layer:tx: <receipt to="917838872866@s.whatsapp.net" type="retry" id="EE6B8C99F66760B780" t="1459176682">

��� HEX:898107d7

DEBUG:yowsup.layers.logger.layer:rx: <ack type="retry" from="917838872866@s.whatsapp.net" class="receipt" id="FA83491FBA201D15F9">

INFO:layer:Message sent DEBUG:yowsup.layers.logger.layer:rx: <ack type="retry" from="917838872866@s.whatsapp.net" class="receipt" id="EE6B8C99F66760B780">

INFO:layer:Message sent DEBUG:yowsup.layers.logger.layer:rx: <ack type="retry" from="917838872866@s.whatsapp.net" class="receipt" id="EE6B8C99F66760B780">

INFO:layer:Message sent

Regards

Neeraj Goel +91 7838872866

On 28 March 2016 at 14:22, jlguardi notifications@github.com wrote:

I'm using https://github.com/tgalal/python-axolotl/tree/develop

— You are receiving this because you were mentioned. Reply to this email directly or view it on GitHub https://github.com/tgalal/yowsup/issues/1387#issuecomment-202308562

techcanvas commented 8 years ago

Pleae help

Regards

Neeraj Goel +91 7838872866

On 28 March 2016 at 20:22, Neeraj Goel neeraj30goel@gmail.com wrote:

Thnks

I am getting below error ERROR:yowsup.layers.axolotl.layer:No valid sessionsBad Mac! DEBUG:yowsup.layers.logger.layer:tx: <receipt to="917838872866@s.whatsapp.net" type="retry" id="EE6B8C99F66760B780" t="1459176682">

��� HEX:898107d7

DEBUG:yowsup.layers.logger.layer:rx: <ack type="retry" from="917838872866@s.whatsapp.net" class="receipt" id="FA83491FBA201D15F9">

INFO:layer:Message sent DEBUG:yowsup.layers.logger.layer:rx: <ack type="retry" from="917838872866@s.whatsapp.net" class="receipt" id="EE6B8C99F66760B780">

INFO:layer:Message sent DEBUG:yowsup.layers.logger.layer:rx: <ack type="retry" from="917838872866@s.whatsapp.net" class="receipt" id="EE6B8C99F66760B780">

INFO:layer:Message sent

Regards

Neeraj Goel +91 7838872866

On 28 March 2016 at 14:22, jlguardi notifications@github.com wrote:

I'm using https://github.com/tgalal/python-axolotl/tree/develop

— You are receiving this because you were mentioned. Reply to this email directly or view it on GitHub https://github.com/tgalal/yowsup/issues/1387#issuecomment-202308562

mgp25 commented 7 years ago

@clooner wtf... gtfo please