We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to:
https://parse.com/docs/server/guide
Parse.initialize(new Parse.Configuration.Builder(this) .server("https://parse-testing-port.herokuapp.com/parse")
If I add LogCat interceptor, I see the URL as (assuming I'm posting a Message object):
Url : https://parse-testing-port.herokuapp.com/classes/Message
The workaround is to set PARSE_MOUNT to be '/' to avoid this issue (https://github.com/codepath/android_guides/wiki/Configuring-a-Parse-Server).
The text was updated successfully, but these errors were encountered:
I worked around this issue this way:
PARSE_MOUNT: '/my-app'
Parse.initialize(new Parse.Configuration.Builder(this) .server("https://parse-server-url.com/my-app/")
Adding the / at the end sends the URLs correctly.
Sorry, something went wrong.
Confirm that adding the / at the end fixes this. Thanks a lot to codepath for the guide.
Closing as resolved.
Fix is here: https://github.com/ParsePlatform/Parse-SDK-Android/pull/436/files
No branches or pull requests
According to:
https://parse.com/docs/server/guide
If I add LogCat interceptor, I see the URL as (assuming I'm posting a Message object):
Url : https://parse-testing-port.herokuapp.com/classes/Message
The workaround is to set PARSE_MOUNT to be '/' to avoid this issue (https://github.com/codepath/android_guides/wiki/Configuring-a-Parse-Server).
The text was updated successfully, but these errors were encountered: