我有一个Twitter提要,我可以在推文中找到Instagram网址。
{
indices: [
90,
110
],
url: "http://t.co/kF9EXifn",
expanded_url: "http://instagr.am/p/QC8hWKL_4K/",
display_url: "instagr.am/p/QC8hWKL_4K/"
}
我需要的是从该对象获取扩展的URL“http://instagr.am/p/QC8hWKL_4K/”并获取只是图像本身的链接,而不是图像上的图像Instagram网站。谁知道怎么做?我甚至可以从网址中获取该链接吗?
答案 0 :(得分:39)
您可以通过将/media/
附加到网址来获取图片。使用您的示例:http://instagr.am/p/QC8hWKL_4K/media/。
您甚至可以指定尺寸
t(缩略图),m(中),l(大)中的一个。默认为m。
所以对于缩略图:http://instagr.am/p/QC8hWKL_4K/media/?size=t
文档here。