What's new

Tools Post liker bot for Xbox written in Python

Professional

Professional

Admin
Administrator
Hidden Devils
Programmer Bug Finder Supreme Bounty Hunter
Messages
6,164
Reaction score
5,180
Points
2,112
Sin$
1,337
here's a python 3 script that I made for boosting the likes on a post, all you need is your XBL3.0 XSTS token that you can generate using fiddler and the XUID associated with each account that you want to use as a bot, then seperate them line by line in this format XUID:TOKEN kind of like a combo list, then you can load accounts into it line by line and make a proffit or get popular from boosting likes on a post.
Python:
# pip install requests
import requests
import random
import string


def main() -> None:
    Welcome = '''                     
 #     # ######  ####### #     #
  #   #  #     # #     #  #   # 
   # #   #     # #     #   # #   
    #    ######  #     #    #   
   # #   #     # #     #   # #   
  #   #  #     # #     #  #   # 
 #     # ######  ####### #     #
                                
 #       ### #    # #######     
 #        #  #   #  #           
 #        #  #  #   #           
 #        #  ###    #####       
 #        #  #  #   #           
 #        #  #   #  #           
 ####### ### #    # #######     
                                
 ######  ####### #######         
 #     # #     #    #           
 #     # #     #    #           
 ######  #     #    #           
 #     # #     #    #           
 #     # #     #    #           
 ######  #######    #           
' '''   
    print(Welcome)
    input("Press Enter to start")
    with open('Accounts.txt') as f:
     for line in f:
      XUID,b = line.split(':')
      AUTH,d = b.split("\n")
      url = "https://comments.xboxlive.com/gameclipsmetadata.xboxlive.com/users/xuid(2533275004056974)/scids/00000000-0000-0000-0000-000000000000/clips/7f2b35c7-327c-41fe-87a2-230a3c848131/likes/xuid(" + XUID + ")"
      headers = {
      "Connection": "Keep-Alive",
      "x-xbl-contract-version": "3",
      "Content-Type": "application/json",
      "accept-language": "en-US, en, en-AU, en",
      "Accept": "application/json",
      "PRAGMA": "no-cache",
      "Accept-Encoding": "gzip; q=1.0, deflate; q=0.5, identity; q=0.1",
      "Authorization": AUTH,
      "Content-Length": "0",
      "Signature": "AAAAAQHXBRmYcY4Gvg7eXM7FcfsN7bYV/DdTxitcgIMAhvbK4WummhbPj/8wIy5H2ph5cy+aaT0UCIpKjkWZyxd7+TkKFmbuCd5bRA==",
      #"Cache-Control": "no-store, must-revalidate, no-cache"
      }
      count = 1
      r = requests.session()
      b = r.put(url=url, headers=headers)
      brl = "Liked"
      ETA = "time:"
      LikeCount = "count:"
      print(url,brl,b.status_code, b.content, ETA, b.elapsed, LikeCount, count)
if __name__ == '__main__':
    main()
 
teb

teb

Project & Sales Manager
Administrator
Odysseus' Summit Scaling the Mountain Stickied
Messages
947
Solutions
15
Reaction score
833
Points
1,217
Sin$
7
Fancy creation. I know there was someone asking about this but nobody had a script or program for it at the time. I’ll be sure to show them once I find them again.
 
D

dfgsdgsfdsfsdgsg

Enthusiast
Messages
6
Reaction score
1
Points
65
Sin$
0
I keep getting error trying to run it, can you help me debug it please, the error is on line 2 of the module/program saying no module named "requests" is found
Post automatically merged:

Do you have to hard code your user XUID into the program along with the authorization code XBL3 or no Im so confused
 
Last edited:
louloupc2255

louloupc2255

Banned
Messages
42
Reaction score
2
Points
65
Sin$
0

I keep getting error trying to run it, can you help me debug it please, the error is on line 2 of the module/program saying no module named "requests" is found
Post automatically merged:

Do you have to hard code your user XUID into the program along with the authorization code XBL3 or no Im so confused
saved the code in a txt called request
 
Professional

Professional

Admin
Administrator
Hidden Devils
Programmer Bug Finder Supreme Bounty Hunter
Messages
6,164
Reaction score
5,180
Points
2,112
Sin$
1,337
I keep getting error trying to run it, can you help me debug it please, the error is on line 2 of the module/program saying no module named "requests" is found
Post automatically merged:

Do you have to hard code your user XUID into the program along with the authorization code XBL3 or no Im so confused
Make a file called Accounts.txt and then put the xuids and auth tokens in in this format
Code:
XUID:Token
you can load multiple accounts at once.
 
D

dfgsdgsfdsfsdgsg

Enthusiast
Messages
6
Reaction score
1
Points
65
Sin$
0
So this is what I've done but still haven't worked:
1) Made a file called "Accounts" CAP sensitive
2) Then put my XUID e.g. 201245331390:speechless:BL3.0 x=123...fdfshgggh...
3) Then tried to put the file ("Accounts") into the directory of python 39 with the python file with the code for ("post liker bot for Xbox One")
4) Then get an error saying:
= RESTART: C:\Users\User\AppData\Local\Programs\Python\Python39\Bot liker for post Xbox One 1.py
Traceback (most recent call last):
File "C:\Users\User\AppData\Local\Programs\Python\Python39\Bot liker for post Xbox One 1.py", line 2, in <module>
import requests
ModuleNotFoundError: No module named 'requests'
>>>

I've put the file ("Accounts") in the same place with the python file for post liker, and did the format of XUID:AUTH and still error, I need help still
Post automatically merged:

"Accounts" is made in a .txt file
Post automatically merged:

Could you make a video tutourial?
 
Last edited:
0

0x_1b

Newbie
Messages
4
Reaction score
1
Points
10
Sin$
7
i have no idea how to use python tbh. is there any way you could make this an executable program?

edit my bad didnt realise this thread was from 2021
 
Top Bottom
Login
Register