我试图获得Instragram图像的最大宽度为822px,但最终得到的最大宽度为658px。我正在使用oEmbed端点和一个简单的URL追加端点。代码片段如下。我检查了Instagram开发者文档,他们说" MAXWIDTH" value是可选的,必须大于320. https://www.instagram.com/developer/embedding/#oembed
jQuery.ajax({
url: "https://api.instagram.com/oembed?url=" + publicUrl,
data: {omitscript:true, maxwidth:822, hidecaption:data.info.imageCaption},
contentType: "application/json; charset=utf-8",
dataType: "jsonp",
cache: false,
success : function (response) {
console.log(response);
},
error : function () {
console.log("error in ajax");
}
});
任何想法,为什么会发生这种情况?