What do you by operating system?
Playstartegy bots
I'm new to coding so I don't know about it.
apple is macOS,and Microsoft is windows
have you create a new account?
I use android
Windows
after download python,“win+r enter cmd” open the cmd.then type:pip install requests
then win+s and type idle to open it. click File->New File and copy the code and press F5.
Next
here's the code:
import requests
api = "Bearer " + input("Your API token: ")
r = requests.post("playstrategy.org/api/bot/account/upgrade", headers = {"Authorization" : api})
print(r.status_code, r.text)
I couldn't understand this. Can you simplify it please.