TimMcCool / scratchattach

Scratch API wrapper with support for almost all site features and cloud requests framework
MIT License
174 stars 44 forks source link

Forum Post Editing: Not Allowed? #245

Open alterniti opened 3 hours ago

alterniti commented 3 hours ago

In the SA wiki you mentioned that making forum posts will never be allowed to prevent spam; however does this also include editing forum posts? Additionally, is it possible to add the ability to edit your forum signature? (answered)

TimMcCool commented 3 hours ago

Creating forum posts will never be a scratchattach feature. But editing forum posts doesn't cause spam. You can update your forum signature using

user = session.connect_user("username") #replace with your username
user.set_forum_signature(text) # Changes the discuss forum signature of the user. New in v1.7.3
alterniti commented 2 hours ago

Ok thanks, I didn’t see the signature editing function.