GetRecommendSearchNFTs
Get NFTs by server recommend.
Parameters
collections|List<string>
- The list of contract address.
action|Action<CommonResponse<List<EVMResMetadataRecommendNFTs>>>
- The callback function of this method is used to receive the results.
Returns
response class
- CommonResponse<List<EVMResMetadataRecommendNFTs>>
Code Example
List<string> collections = new List<string>();collections.Add("collection 1");MWSDK.BNB.Metadata.RecommendSearchNFTs(collections, (res) =>{ CommonResponse<List<EVMResMetadataRecommendNFTs>> resObj = res; long code = resObj.code; string message = resObj.message; List<EVMResMetadataRecommendNFTs> nftList = resObj.data; //todo...});
Edit this page on GitHub