Hello,
Please can somebody help me with this, I am wondering if "appid": "myappID"
is a valid applicationId
for Parse Server.
I couldn’t connect to my app with Parse Server in aws.
.applicationId("myappID")
.clientKey("KEY_HERE")
.server("http://3.22.60.125:1337/parse/")
Yes your app id is valid. Seems like you are using android SDK. And your server doesn’t have SSL sertificate. After android 9 (including 9) android automatically blocks unsecure connections(ie. http). paste this lines between application tag in your manifiest file:
android:usesCleartextTraffic="true"
Edit: I tested your server but seems like parse is not running in http://3.22.60.125:1337/parse/
But look like your parse server is here
http://3.22.60.125/parse/
When you run parse server make sure your endpoint is working.
You should get this message when your parse server working
{“error”:“unauthorized”}
Change your code to this
.applicationId("myappID")
.clientKey("KEY_HERE")
.server("http://3.22.60.125/parse/")
1 Like
@uzaysan
You are great guy. Thanks a million. Putting this android:usesCleartextTraffic=“true” in the manifest resolved the problem.
1 Like