web3Api on local server

hello i wanna use Moralis.Web3API.token.getAllTokenIds inside my self hosted server on binance tesnet what im doing wrong? im getting an empty response

const Moralis = require(ā€˜moralis-v1/nodeā€™);

const serverUrl = ā€œhttps://xxx.herokuapp.com/serverā€;
const appId = ā€˜001ā€™;
Moralis.start({

serverUrl,

appId,

});

Parse.Cloud.define(ā€˜getAllTokenIdsā€™, async() => {

const options = {

address: "0x1db5c74a843920fc30c4838473cb44e730066173",

chain:'0x61'

};

  let response = await Moralis.Web3API.token.getAllTokenIds( options );

return {response};

});

Can you try testing it now. Recently there was an issue on binance testnet, and it is fixed.