Hello i have some issue juste donโt understand why I have this error I see topics with getNFTs have the same problem so I just check web3 API and test its ok on Moralis.io, I reset the server but have the 400 error in my browser I use CHROME.
I follow the yt tuto with ivontech
my js =>
Moralis.initialize("nTRalsoxJeH0LGBm4JUjidYfWgBJWe9rCnlFb3Fo");
Moralis.serverURL = "https://ywk66wksiont.moralishost.com:2053/server";
async function initializeApp() {
let currentUser = Moralis.User.current();
if (!currentUser) {
currentUser = await Moralis.Web3.authenticate();
}
//alert("User is signed in");
const options = { adress: "0xb5e0ac7bbf88ccc7674bbd88f9fe8d3f1a050fdc", chain: "rinkeby"};
const NFTs = await Moralis.Web3API.token.getAllTokenIds(options);
console.log(NFTs);
}
initializeApp();
thank you for ur support