I have followed the tutorial for connecting Moralis to unity & playfab https://docs.moralis.io/docs/using-unity-playfab I was able to authenticate the user. There are other functions like getting NFTs and TokenBalance in the tutorial. How can I call those inside Unity? And if I want to Update the Metadata of an NFT I will do that inside a function on Azure and register it on Playfab but how will I call that inside Unity?
Calling the API is covered in this section.
When you say update the metadata of an NFT, do you mean on-chain? This is usually done by updating the NFT’s token URI, you would have to make a transaction on the NFT contract.
I Have been through the link you have provided above. I have thoes functions hosted on Azure already and I am able to run the project provided https://github.com/MoralisWeb3/demo-unity-moralis-auth-via-playfab. In this project you are only using two functions
ChallengeRequest
ChallengeVerify
How can I call/use
GetNativeBalance
GetNfts
functions with in Unity.