Skip to content

no /1/ in api.parse.com #352

Closed
Closed
@AndroidGecko

Description

@AndroidGecko

I have a very strange issue.
When running a very simple project from scratch with :

    Parse.enableLocalDatastore(this);
    Parse.initialize(this);
    ParseObject testObject = new ParseObject("TestObject");
    testObject.put("foo", "bar");
    testObject.saveInBackground();

everything works fine
the request is made to
https://api.parse.com/1/classes/TestObject
and everything works fine

However if I try to integrate my existing app and place same code inside custom application (+keys in manifest) the api call fails with 404. Reason being that it pokes
https://api.parse.com/classes/TestObject

notice lack of /1/

If I manually catch above request in proxy and re-execute it with same data, it passes.

Any ideas why the /1/ is not being added?

Metadata

Metadata

Assignees

No one assigned

    Labels

    type:bugImpaired feature or lacking behavior that is likely assumed

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions