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
Thank you for creating such an awesome package—it's truly helpful with my game development. I've been running into a CORS issue with Flutter web when attempting to connect to my Nakama server deployed on Digital Ocean. The method below throws a Dio error stating "The connection errored: The XMLHttpRequest onError callback was called. This typically indicates an error on the network layer. This indicates an error which most likely cannot be solved by the library." The app works fine when running on iOS or Android simulators. Besides this issue, the package is perfect. Have you encountered this problem before or know how to work around it? I look forward to your response.
Good evening gentlemen, and happy new year.
Thank you for creating such an awesome package—it's truly helpful with my game development. I've been running into a CORS issue with Flutter web when attempting to connect to my Nakama server deployed on Digital Ocean. The method below throws a Dio error stating "The connection errored: The XMLHttpRequest onError callback was called. This typically indicates an error on the network layer. This indicates an error which most likely cannot be solved by the library." The app works fine when running on iOS or Android simulators. Besides this issue, the package is perfect. Have you encountered this problem before or know how to work around it? I look forward to your response.
`Future _auth() async {
try {
final client = getNakamaClient(
host: '24.144.85.68',
ssl: false,
serverKey: 'defaultkey',
httpPort: 7350,
);
} on DioException catch (e) {
debugPrint(e.message);
}
}`
The text was updated successfully, but these errors were encountered: