Untitled

 avatar
unknown
python
4 years ago
546 B
5
Indexable
    def sendBump(self, message, threadID):
        rbmp = self.session.post(
            url="https://ogusers.com/newreply.php?ajax=1",
            data={
                'my_post_key': self.config['userPostKey'],
                'subject': '',
                'action': 'do_newreply',
                'posthash': '',
                'quoted_ids': '',
                'lastpid': 0,
                'tid': threadID,
                'method': 'quickreply',
                'message': ' %s' % message
            }
        )
        return rbmp.text
Editor is loading...