Snapchat API 引发错误

Snapchat API raising error

我目前正在试验从 PHP API 派生的 python API for Snapchat。我是 运行 我的程序,来自华硕的 Windows 10 笔记本电脑。似乎我收到了一个一致的错误,告诉我我需要更新我的软件 OS 或更新 Snapchat,这很奇怪,因为我有最新版本的 windows 并且没有 Snapchat windows。

经过研究,这似乎是越狱手机上常见的消息,旨在对抗第三方开发者。似乎只有我一个人遇到这个问题,因为我环顾了互联网,似乎没有其他人抱怨过。有人可以帮我解决这个问题并解释为什么会这样吗?提前谢谢你

>>> import pysnap
>>> snapchat = pysnap.Snapchat()
>>> snapchat.login('username', 'password')

Traceback (most recent call last):
  File "<pyshell#13>", line 1, in <module>
    snapchat().login('username', 'password')
  File "build\bdist.win32\egg\pysnap\__init__.py", line 113, in login
    raise Exception(result.get('message', 'unknown error'))
Exception: You're using a version of Snapchat or operating system that's no longer supported. Please upgrade your device's operating system and update to the newest app version to use Snapchat. Thanks!

我不知道我有解决方案,但看起来几个类似的库也处理过问题:

SnapchatBot https://github.com/agermanidis/SnapchatBot/issues/52

Snapchat PHP SDK https://github.com/liamcottle/Snapchat-SDK-PHP/issues/38

看起来 PHP SDK 确实解决了这个问题,尽管那里似乎没有明确说明解决方案。