itisnajim
itisnajim
`if add it manually and it will automatically identified` create a new strapi project in ur localhost use sqlite for a fastest experiment, check and tell me if it did
change deviceTokenFieldName value to device_token, like i did https://github.com/itisnajim/strapi-plugin-fcm#configuration
i'm using postgres, mysql not tested yet, if you can switch to postgres until this issue get fixed, thanks for understanding
in your webpack.config.js add .js to extensions array ```js resolve: { extensions: [".ts", ".js"], } ```
`response.GetValue().GetRawText()` become `response.ToString()`, i didn't update the example folder, sorry !
```cs var obj = response.GetValue(); ``` replace YOUR_TYPE with the class name or the type you want to serialize to e.g YOUR_TYPE can be: string[], SomeClass, int and so on...
check if the server send the correct data, maybe its a string rather that list of objects, this is not a list => "[\"item1\", \"item2\"]" and i recommend to use...
i have no code snippet of what u are trying to achieve, but this is an example to how u can do it ```csharp public async Task GetPlayerAndClanAsync(object someObject) {...
try to not use unity thread when fetching ur needed data (get-player and get-clan), then after retrieving ur data run use unity thread ```cs var (playerData, clanData) = await socketManager.GetPlayerAndClanAsync(someObject);...
try upgrading unity; see https://github.com/itisnajim/SocketIOUnity/issues/36