Skip to content

Can I connect client to multiple parse servers? #5829

Closed
@DuanYH16

Description

@DuanYH16

I am trying to connect different react components in the same app to multiple parse servers but I can only connect to one parse server.

App.js is the parent component and App2.js is the child component.

I have started 2 parse servers, each running on different ports.

Parse server A runs on port 1330, 1331 (livequery) while the other server B runs on port 1337, 1338 (livequery). I tried to connect App.js to A and App2.js to B but App2.js still connects to A.

Is it possible to connect App2.js to both server A and B?

in App.js:

import { Parse as UserParse } from "parse";
UserParse.initialize("APP_ID");
UserParse.serverURL = "http://localhost:1330/parse";
UserParse.liveQueryServerURL = "ws://localhost:1331/";

in App2.js:

import {Parse as DataParse } from "parse";
DataParse.initialize("APPLICATION_ID")
DataParse.serverURL = "http://localhost:1337/parse"
DataParse.liveQueryServerURL = "ws://localhost:1338/"
Errors encountered:

RESTController.js:205 POST http://localhost:1337/parse/classes/400 (Bad Request)

Uncaught (in promise) Error: Invalid session token at RESTController.js:319

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions