OperationResponse 230

The whole answer can be found below.

Please note: The Photon forum is closed permanently. After many dedicated years of service we have made the decision to retire our forum and switch to read-only: we've saved the best to last! And we offer you support through these channels:

Try Our
Documentation

Please check if you can find an answer in our extensive documentation on PUN.

Join Us
on Discord

Meet and talk to our staff and the entire Photon-Community via Discord.

Read More on
Stack Overflow

Find more information on Stack Overflow (for Circle members only).

Write Us
an E-Mail

Feel free to send your question directly to our developers.

OperationResponse 230: ReturnCode: 32767

GLucas
2019-06-21 21:33:39

public static void Connect() {  
            Debug.Log("NetworkManager: " + StaticUtilities.StyleText("Connect", Color.blue, true));  
            //PhotonNetwork.ConnectUsingSettings();  
            PhotonNetwork.ConnectToRegion("us");  
            PhotonNetwork.GameVersion = Application.version;  
}

(Using PUN2)
So connecting with PhotonNetwork.ConnectUsingSettings(); works fine, however when i try to connect to a specific region, i get this error.

I see it has an issue with the APP id, but even when i use a realtime app id its the same.

If i connect to a region, do i need to do a specific connection setup thats server settings related and not just call PhotonNetwork.ConnectToRegion("us"); ?

Comments

JohnTube
2019-06-24 11:55:44

Hi @GLucas,

Only ConnectUsingSettings() is making use of PhotonServerSettings. When using the other connect-methods, the app needs to set AppId and other values manually (and the settings won't override those values).

Find more details in previous discussions.

GLucas
2019-06-24 23:55:44

This is what a good ol search does. Should know better, my apologies.

Back to top