Rob-- / SnapWrap

Wrapper for the unofficial and undocumented Snapchat API (using Snapchat's latest endpoints).
MIT License
57 stars 7 forks source link

Login failed #7

Closed jkaberg closed 9 years ago

jkaberg commented 9 years ago

Getting this everyime I try to login, and I'm positive the user/password is correct

[03/13/15 18:24:07] Login failed, -103 - Oh no! Your login temporarily failed, so please try again later. If your login continues to fail, please visit https://support.snapchat.com/a/failed-login :)

My script:

from SnapWrap import Snapchat import logging

class CustomBot(Snapchat): def on_snap(self, snap): self.post_story(snap)

logging.getLogger("requests").setLevel(logging.DEBUG)

bot = CustomBot(*["xxxx", "xxxx"]) bot.begin()

Logging in using https://github.com/agermanidis/SnapchatBot/ works just fine

jkaberg commented 9 years ago

Thanks!