S
Size: a a a
M
fetch('https://www.instagram.com/victoriassecret/?__a=1')
.then(res=>res.json())
.then(res=>res.graphql)
.then(res=>res.user)
.then(res=>res['edge_owner_to_timeline_media'])
.then(res=>res.edges)
.then(posts=>{
document.body.innerHTML = posts.map((post)=>`<p><img width='100%' src="${post.node['display_url']}"/></p>`).join('')
});
F
S
fetch('https://www.instagram.com/victoriassecret/?__a=1')
.then(res=>res.json())
.then(res=>res.graphql)
.then(res=>res.user)
.then(res=>res['edge_owner_to_timeline_media'])
.then(res=>res.edges)
.then(posts=>{
document.body.innerHTML = posts.map((post)=>`<p><img width='100%' src="${post.node['display_url']}"/></p>`).join('')
});
F
И
M
KB
KB
И
KB
KB
KB
И