I pretty much copy and pasted from the parse documentation to get server information:
import json
import http.client
conn = http.client.HTTPSConnection('parseapi.back4app.com', 443)
conn.connect()
conn.request('GET', '/APP/users/ObjectID', '', {
"X-Parse-Application-Id": 'AppID',
"X-Parse-REST-API-Key": 'REST_API_kkey'
})
result = json.loads(conn.getresponse().read())
print (result)
but i keep getting this result:
{'message': 'Not Found', 'error': {}}