'I'm going to use Opensea api to bring and show my assets on the web, but I can't
I'm going to use opensea api to search my assets and distribute them on the web. However, if you enter your address, you can't get the value (displayed as 0), and if you search to another person's address on the opensea testnet, the list is well imported and distributed on the web.
By any chance, this is the type of asset I own (I will write down one of the assets in the sample below). Does it affect that?
Below, I also post the code I wrote to distribute on the web.
function getImageList() {
const url = 'https://testnets-api.opensea.io/api/v1/assets?order_direction=desc&offset=0&limit=20&owner=0xb24dabb713abaa254097e9f5237f4a72a53ec478';
const options = { method: 'GET' };
fetch(url, options)
.then(res => res.json())
.then(json =>
{
var obj = json;
console.log(obj.assets.length)
var image = document.getElementById('img1');
//image.src = obj.assets[0].image_preview_url
var n;
for(n =0; n < obj.assets.length; n++)
{
var nullimg = 'https://gateway.pinata.cloud/ipfs/QmT4SVJDvLQDE7cJf4jGfy6XQpMCkY5opLPKmUX3R7RmKN';
var imgurl =
obj.assets[n].image_url?obj.assets[n].image_url : nullimg;
console.log(imgurl)
var templet ='<div class="columns portfolio-item">'
+'<div class="item-wrap">'
+'<a href="#modal-01" title="">'
+'<img id="img1" alt="" src="'
+
imgurl
+'">'
+' <div class="overlay">'
+'<div class="portfolio-item-meta">'
+'<h5>Coffee</h5>'
+'<p>Illustrration</p>'
+'</div>'
+'</div>'
+'<div class="link-icon"><i class="icon-plus"></i></div>'
+'</a>'
+'</div>'
+'</div>';
$('#portfolio-wrapper').append(templet);
}
})
.catch(err => console.error('error:' + err));
}
Below is an image detail screen of one of the collection lists I have. Just in case, I did a cell, but I haven't been able to look it up.
Among the codes written above, you can put the address of the owner you want to inquire after the owner at const url = 'https://testnets-api.opensea.io/api/v1/assets?order_direction=desc&offset=0&limit=20&owner=0xb24dabb713abaa254097e9f5237f4a72a53ec478';, but I don't know the principle of whether it works or not.
Will I be able to get help? P.S. I used a translator, so it may sound a little strange. I ask for your understand! Thank you. Have a good day!
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|