Comment on
Posting with Python
Yes it does!
Comment on
Posting with Python
Yes it does!
Comment on
How do you edit an existing post via the API?
Reply in thread
I should have been more clear - I meant how do you edit an existing post.
Comment on
How do you edit an existing post via the API?
Reply in thread
Thank you! I got it. I thought all it needed was the id and the body, but you have to supply the name and the community_id as well.
Comment on
How do you edit an existing post via the API?
Reply in thread
Okay, that did it - just like you said: use a requests.put with those parameters and that's all it needs. Thanks!
Comment on
How do you edit an existing post via the API?
Reply in thread
That's almost certainly what's going wrong. I'm working off of a very basic Python interface for the API that I found. Now I need to figure out how to send PUTs with Python's requests library....
Comment on
How do you edit an existing post via the API?
Reply in thread
Wait - never mind. It's just creating new posts and not editing the existing one...