JSFiddle - React, Tailwind, and code Playground

by Vladimir Sobolev

HTML

<pre id="xx"></pre>

JavaScript

options = {
	method: 'POST',
  headers: {
  }
};

fetch('https://i.instagram.com/api/v1/launcher/sync/', options)
  .then(function(response) {
  	
    console.log(response.headers.get('ig-set-ig-u-ds-user-id'));
    //console.log(response.text());
  
  });