The problem of calling functions, not sending address parameter to getTokenBalances

Our project is online and we have repeatedly received such errors, but the data display was. Now the response from the functions has stopped coming at all. Help, people are excited…

pls help me
https://wyvsedwittrb.usemoralis.com:2053/server
bF2Dw5XLcuwPNlMvK353QWTMoMWXPoTfP9Iw20Wl

I see a different server name in that image vs what you pasted

updating now the server that starts with wyvse

https://40qt2ndqdwe2.usemoralis.com:2053/server
iWxxE3FbHCPfDw8fAuP9UJCAsQdSBux6ozFjLgQ9

It’s just that the error occurs on both of my servers. One main, the second backup

there are some errors of this type:

required param address not provided Error: required param address not provided 

you can look in browser tab if the address was provided, it looks like user is not authenticated or the address of the user is not provided as parameter

https://starwarsavax.com/#/
You can check online?

from that error it seems to be a react application, you can check too, I know that the address is not provided as parameter

Can you tell me how to do it?

I see this: Input: {"chain":"eth","token_address":"0x1cDBDD4c585908322048F991A8A6A8366A19f9EE"}

getTokenBalances has documentation here: https://docs.moralis.io/moralis-server/web3-sdk/account#gettokenbalances

you need to provide the address parameter in case that the user is not logged in

useMoralisWeb3ApiCall(account.getTokenBalances, {

    chain: chainId,

    address: walletAddress,

    token_address: TOKEN_ADDRESS,

    ...options,

});

useMoralisWeb3ApiCall(account.getTokenBalances, {

    chain: chainId,

    token_address: TOKEN_ADDRESS,

    ...options,

});

Should it be like this?

I think that you need to also include that address parameter

I still get an error on the backup server. The application is deployed on a local network.

Can I go into more detail? pls

click on that error to see what data was sent, and check if address parameter was provided

How can I see it?

Is it possible to get these parameters not through Moralis web3ApiCall, but through regular web3 to avoid such problems in the future?

you click on those requests to see more information about them