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
Error: Path /v2/mention-and-reply-notifications?limit=25 does not exist
Traceback (most recent call last):
File "C:\Users\v\PycharmProjects\warpcast-sandbox\get_notifications.py", line 14, in <module>
r = client.get_mention_and_reply_notifications()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\v\PycharmProjects\warpcast-sandbox\.venv\Lib\site-packages\farcaster\client.py", line 650, in get_mention_and_reply_notifications
response = self._get(
^^^^^^^^^^
File "C:\Users\v\PycharmProjects\warpcast-sandbox\.venv\Lib\site-packages\farcaster\client.py", line 89, in _get
raise Exception(response["errors"]) # pragma: no cover
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Exception: [{'message': 'Path /v2/mention-and-reply-notifications?limit=25 does not exist'}]
🔬 How To Reproduce
Run this
import os
from farcaster import Warpcast
from dotenv import load_dotenv
load_dotenv()
client = Warpcast(mnemonic=os.environ.get("MNEMONIC"))
if client.get_healthcheck():
print("Connected API Warpcast")
else:
print("Cannot connect to API Warpcast")
exit(1)
r = client.get_mention_and_reply_notifications()
print(r)
Environment
OS: windows
Python version, get it with: 3.12
The text was updated successfully, but these errors were encountered:
🐛 Bug Report
Error: Path /v2/mention-and-reply-notifications?limit=25 does not exist
🔬 How To Reproduce
Run this
Environment
The text was updated successfully, but these errors were encountered: