-
-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
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
delete_post not work #341
Comments
Show the full code pls. Are you sure that is 1:1 as the example? |
I tried it exactly as shown in the example. and get a return value like that. |
@afrizal423 ah. looks like the example is outdated. pls try this client = Client()
client.login('my-handle', 'my-password')
post_ref = client.send_post('Test send-delete from Python SDK')
print('Post reference:', post_ref)
print('Post URI:', post_ref.uri)
print('Deleted successfully:', client.delete_post(post_ref.uri)) |
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Delete post not working, I'm just following this example https://github.com/MarshalX/atproto/blob/main/examples/delete_post.py
The text was updated successfully, but these errors were encountered: