Advertisement
Guest User

Untitled

a guest
Jun 29th, 2017
1,097
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.38 KB | None | 0 0
  1.  
  2. String myEndpointURL = "https://api.instagram.com/oembed/?url=https://www.instagram.com/p/BSKplJUDPPE/"
  3. myURL = new URL(myEndpointUrl + "/?format=json&url=" + currentContent);
  4. connection = (HttpURLConnection) myURL.openConnection();
  5. connection.setRequestMethod("GET");
  6. connection.connect();
  7.  
  8. if (connection.getResponseCode() == 200) {
  9.  
  10. mapper = new ObjectMapper();
  11. rootNode = mapper.readValue(myURL, JsonNode.class);
  12.  
  13. return rootNode.get("html").toString();
  14. }
  15.  
  16.  
  17.  
  18.  
  19. JSON RESPONSE:
  20. {"version": "1.0", "title": "New friends and fun Boomerangs were made by Alfan Erdi Jozuna (@alfanzu) at this #WWIM15\u2764\ufe0f in Jakarta, Indonesia.\n#Boomerang by @alfanzu", "author_name": "instagram", "author_url": "https://www.instagram.com/instagram", "author_id": 25025320, "media_id": "1480178300072293316_25025320", "provider_name": "Instagram", "provider_url": "https://www.instagram.com", "type": "rich", "width": 658, "height": null, "html": "\u003cblockquote class=\"instagram-media\" data-instgrm-captioned data-instgrm-version=\"7\" style=\" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:658px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);\"\u003e\u003cdiv style=\"padding:8px;\"\u003e \u003cdiv style=\" background:#F8F8F8; line-height:0; margin-top:40px; padding:50.0% 0; text-align:center; width:100%;\"\u003e \u003cdiv style=\" background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAMAAAApWqozAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAMUExURczMzPf399fX1+bm5mzY9AMAAADiSURBVDjLvZXbEsMgCES5/P8/t9FuRVCRmU73JWlzosgSIIZURCjo/ad+EQJJB4Hv8BFt+IDpQoCx1wjOSBFhh2XssxEIYn3ulI/6MNReE07UIWJEv8UEOWDS88LY97kqyTliJKKtuYBbruAyVh5wOHiXmpi5we58Ek028czwyuQdLKPG1Bkb4NnM+VeAnfHqn1k4+GPT6uGQcvu2h2OVuIf/gWUFyy8OWEpdyZSa3aVCqpVoVvzZZ2VTnn2wU8qzVjDDetO90GSy9mVLqtgYSy231MxrY6I2gGqjrTY0L8fxCxfCBbhWrsYYAAAAAElFTkSuQmCC); display:block; height:44px; margin:0 auto -44px; position:relative; top:-22px; width:44px;\"\u003e\u003c/div\u003e\u003c/div\u003e \u003cp style=\" margin:8px 0 0 0; padding:0 4px;\"\u003e \u003ca href=\"https://www.instagram.com/p/BSKplJUDPPE/\" style=\" color:#000; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none; word-wrap:break-word;\" target=\"_blank\"\u003eNew friends and fun Boomerangs were made by Alfan Erdi Jozuna (@alfanzu) at this #WWIM15\u2764\ufe0f in Jakarta, Indonesia. #Boomerang by @alfanzu\u003c/a\u003e\u003c/p\u003e \u003cp style=\" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;\"\u003eEin Beitrag geteilt von Instagram (@instagram) am \u003ctime style=\" font-family:Arial,sans-serif; font-size:14px; line-height:17px;\" datetime=\"2017-03-28T03:17:05+00:00\"\u003e27. M\u00e4r 2017 um 20:17 Uhr\u003c/time\u003e\u003c/p\u003e\u003c/div\u003e\u003c/blockquote\u003e\n\u003cscript async defer src=\"//platform.instagram.com/en_US/embeds.js\"\u003e\u003c/script\u003e", "thumbnail_url": "https://scontent-frx5-1.cdninstagram.com/t51.2885-15/e15/17494891_423269048006004_7681013422179221504_n.jpg", "thumbnail_width": 640, "thumbnail_height": 640}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement