We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The method post_cast creates a cast, however it disappears after a given period of time (24h).
post_cast
Steps to reproduce the behavior:
# farcaster = "^0.7.11" c2 = Warpcast(private_key="MY-PRIVATE-KEY") cast = c2.post_cast("test cast") cast_hash = cast.cast.hash print (f"cast_hash {cast_hash}") # ... Wait 24h c2 = Warpcast(private_key="MY-PRIVATE-KEY") cast = c2.get_cast(cast_hash) $ Error c2.get_cast(cast.cast.hash) File "/home/gabrielfior/miniconda3/envs/PMA/lib/python3.10/site-packages/farcaster/client.py", line 338, in get_cast response = self._get( File "/home/gabrielfior/miniconda3/envs/PMA/lib/python3.10/site-packages/farcaster/client.py", line 89, in _get raise Exception(response["errors"]) # pragma: no cover Exception: [{'message': 'Cast 0xabdea1ff98521bef0c1f5e24ef0461ae21d91805 does not exist'}]
For example, the post with hash 0xabdea1ff98521bef0c1f5e24ef0461ae21d91805 was created 1 day ago and now it doesn't exist anymore.
0xabdea1ff98521bef0c1f5e24ef0461ae21d91805
See above
I expected the cast to be stored permanently and be available for later retrieval.
The text was updated successfully, but these errors were encountered:
get_cast don't work rn(probably they changed endpoint url). you should try to access your cast by hubble https://docs.farcaster.xyz/reference/hubble/httpapi/casts
Sorry, something went wrong.
No branches or pull requests
🐛 Bug Report
The method
post_cast
creates a cast, however it disappears after a given period of time (24h).🔬 How To Reproduce
Steps to reproduce the behavior:
For example, the post with hash
0xabdea1ff98521bef0c1f5e24ef0461ae21d91805
was created 1 day ago and now it doesn't exist anymore.Code sample
See above
Environment
Screenshots
📈 Expected behavior
I expected the cast to be stored permanently and be available for later retrieval.
The text was updated successfully, but these errors were encountered: