You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am always getting "unauthorized" when I try to perform any operation with the Android SDK.
I followed the migration guide and deployed the parse-server to Heroku and MongoLab
The server seems to be up and running. Here the last logs:
I am using the last Android SDK library: compile 'com.parse:parse-android:1.13.0'
and initialising Parse on the app with:
Parse.initialize(newParse.Configuration.Builder(getApplicationContext())
.applicationId("myAppId")
.clientKey("myClientKey")
.server("http://myApp.herokuapp.com/parse/") // '/' important after 'parse'
.build());