Update InstagramRipper.java
These changes to the getOriginalUrl should make sure that the InstagramRipper stops retrieving the cropped versions of the images.
This commit is contained in:
parent
6a35f0fd19
commit
00a87f74d9
@ -111,8 +111,21 @@ public class InstagramRipper extends AbstractJSONRipper {
|
||||
|
||||
private String getOriginalUrl(String imageURL) {
|
||||
imageURL = imageURL.replaceAll("scontent.cdninstagram.com/hphotos-", "igcdn-photos-d-a.akamaihd.net/hphotos-ak-");
|
||||
imageURL = imageURL.replaceAll("p150x150/", "");
|
||||
imageURL = imageURL.replaceAll("p320x320/", "");
|
||||
imageURL = imageURL.replaceAll("p480x480/", "");
|
||||
imageURL = imageURL.replaceAll("p640x640/", "");
|
||||
imageURL = imageURL.replaceAll("p720x720/", "");
|
||||
imageURL = imageURL.replaceAll("p1080x1080/", "");
|
||||
imageURL = imageURL.replaceAll("p2048x2048/", "");
|
||||
imageURL = imageURL.replaceAll("s150x150/", "");
|
||||
imageURL = imageURL.replaceAll("s320x320/", "");
|
||||
imageURL = imageURL.replaceAll("s480x480/", "");
|
||||
imageURL = imageURL.replaceAll("s640x640/", "");
|
||||
|
||||
imageURL = imageURL.replaceAll("s720x720/", "");
|
||||
imageURL = imageURL.replaceAll("s1080x1080/", "");
|
||||
imageURL = imageURL.replaceAll("s2048x2048/", "");
|
||||
|
||||
// Instagram returns cropped images to unauthenticated applications to maintain legacy support.
|
||||
// To retrieve the uncropped image, remove this segment from the URL.
|
||||
// Segment format: cX.Y.W.H - eg: c0.134.1080.1080
|
||||
|
Loading…
Reference in New Issue
Block a user