Download a file on Autodesk Forge using .NET











up vote
0
down vote

favorite












I am unsure how to download objects inside a bucket. The file I am currently able to download has a significantly smaller size compared to the file uploaded in the bucket. In addition, I am unable to open the file after it is downloaded. Is there something missing in my code? The following code is what I used to download files.



var element = document.createElement('a');

element.setAttribute('href', '#');
element.setAttribute('download', node.text);
element.style.display = 'none';

document.body.appendChild(element);
element.click();
document.body.removeChild(element);









share|improve this question




























    up vote
    0
    down vote

    favorite












    I am unsure how to download objects inside a bucket. The file I am currently able to download has a significantly smaller size compared to the file uploaded in the bucket. In addition, I am unable to open the file after it is downloaded. Is there something missing in my code? The following code is what I used to download files.



    var element = document.createElement('a');

    element.setAttribute('href', '#');
    element.setAttribute('download', node.text);
    element.style.display = 'none';

    document.body.appendChild(element);
    element.click();
    document.body.removeChild(element);









    share|improve this question


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I am unsure how to download objects inside a bucket. The file I am currently able to download has a significantly smaller size compared to the file uploaded in the bucket. In addition, I am unable to open the file after it is downloaded. Is there something missing in my code? The following code is what I used to download files.



      var element = document.createElement('a');

      element.setAttribute('href', '#');
      element.setAttribute('download', node.text);
      element.style.display = 'none';

      document.body.appendChild(element);
      element.click();
      document.body.removeChild(element);









      share|improve this question















      I am unsure how to download objects inside a bucket. The file I am currently able to download has a significantly smaller size compared to the file uploaded in the bucket. In addition, I am unable to open the file after it is downloaded. Is there something missing in my code? The following code is what I used to download files.



      var element = document.createElement('a');

      element.setAttribute('href', '#');
      element.setAttribute('download', node.text);
      element.style.display = 'none';

      document.body.appendChild(element);
      element.click();
      document.body.removeChild(element);






      javascript .net autodesk-forge autodesk-viewer






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Dec 7 at 17:18

























      asked Nov 22 at 15:44









      Nathan Hurley

      83




      83
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          You refer my answer here (Download BIM360 Docs file using Javascript) to download files from Forge OSS bucket.



          In this suggestion, I extended the jQuery function to creates new XMLHttpRequest and passes all the received data back to the jQuery.



          /**
          *
          * jquery.binarytransport.js
          *
          * @description. jQuery ajax transport for making binary data type requests.
          * @version 1.0
          * @author Henry Algus <henryalgus@gmail.com>
          *
          */
          // use this transport for "binary" data type
          $.ajaxTransport("+binary", function(options, originalOptions, jqXHR) {
          // check for conditions and support for blob / arraybuffer response type
          if (window.FormData && ((options.dataType && (options.dataType == 'binary')) || (options.data && ((window.ArrayBuffer && options.data instanceof ArrayBuffer) || (window.Blob && options.data instanceof Blob))))) {
          return {
          // create new XMLHttpRequest
          send: function(headers, callback) {
          // setup all variables
          var xhr = new XMLHttpRequest(),
          url = options.url,
          type = options.type,
          async = options.async || true,
          // blob or arraybuffer. Default is blob
          dataType = options.responseType || "blob",
          data = options.data || null,
          username = options.username || null,
          password = options.password || null;

          xhr.addEventListener('load', function() {
          var data = {};
          data[options.dataType] = xhr.response;
          // make callback and send data
          callback(xhr.status, xhr.statusText, data, xhr.getAllResponseHeaders());
          });

          xhr.open(type, url, async, username, password);

          // setup custom headers
          for (var i in headers) {
          xhr.setRequestHeader(i, headers[i]);
          }

          xhr.responseType = dataType;
          xhr.send(data);
          },
          abort: function() {
          jqXHR.abort();
          }
          };
          }
          });


          Afterward, you can simply replace values of filename, bucketKey and YOUR_ACCESS_TOKEN to yours to download files on the website directly. However, it could be very unsafe, please see the comment here



          $(function() {

          $('a#download').click(function(event) {
          event.preventDefault();

          const filename = 'hose.rvt';
          const bucketKey = 'adn-test';

          const settings = {
          crossDomain: true,
          url: 'https://developer.api.autodesk.com/oss/v2/buckets/' + bucketKey + ' /objects/' + filename,
          method: 'GET',
          dataType: 'binary',
          processData: false,
          headers: {
          Authorization: 'Bearer YOUR_ACCESS_TOKEN',
          Content-Type: 'application/octet-stream'
          }
          };

          $.ajax(settings).done(function (blob, textStatus, jqXHR) {
          console.log(blob );
          console.log(textStatus);

          if( navigator.msSaveBlob )
          return navigator.msSaveBlob(blob, filename);

          const url = URL.createObjectURL(blob);
          const a = document.createElement('a');
          a.style = 'display: none';
          document.body.appendChild(a);

          a.href = url;
          a.download = filename;
          a.click();
          URL.revokeObjectURL(url);
          });
          });
          })





          share|improve this answer





















          • I have tried to use the code above but I am getting errors regarding XMLHttpRequest and my origin is blocked by CORS policy
            – Nathan Hurley
            Dec 3 at 12:03











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53434381%2fdownload-a-file-on-autodesk-forge-using-net%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote













          You refer my answer here (Download BIM360 Docs file using Javascript) to download files from Forge OSS bucket.



          In this suggestion, I extended the jQuery function to creates new XMLHttpRequest and passes all the received data back to the jQuery.



          /**
          *
          * jquery.binarytransport.js
          *
          * @description. jQuery ajax transport for making binary data type requests.
          * @version 1.0
          * @author Henry Algus <henryalgus@gmail.com>
          *
          */
          // use this transport for "binary" data type
          $.ajaxTransport("+binary", function(options, originalOptions, jqXHR) {
          // check for conditions and support for blob / arraybuffer response type
          if (window.FormData && ((options.dataType && (options.dataType == 'binary')) || (options.data && ((window.ArrayBuffer && options.data instanceof ArrayBuffer) || (window.Blob && options.data instanceof Blob))))) {
          return {
          // create new XMLHttpRequest
          send: function(headers, callback) {
          // setup all variables
          var xhr = new XMLHttpRequest(),
          url = options.url,
          type = options.type,
          async = options.async || true,
          // blob or arraybuffer. Default is blob
          dataType = options.responseType || "blob",
          data = options.data || null,
          username = options.username || null,
          password = options.password || null;

          xhr.addEventListener('load', function() {
          var data = {};
          data[options.dataType] = xhr.response;
          // make callback and send data
          callback(xhr.status, xhr.statusText, data, xhr.getAllResponseHeaders());
          });

          xhr.open(type, url, async, username, password);

          // setup custom headers
          for (var i in headers) {
          xhr.setRequestHeader(i, headers[i]);
          }

          xhr.responseType = dataType;
          xhr.send(data);
          },
          abort: function() {
          jqXHR.abort();
          }
          };
          }
          });


          Afterward, you can simply replace values of filename, bucketKey and YOUR_ACCESS_TOKEN to yours to download files on the website directly. However, it could be very unsafe, please see the comment here



          $(function() {

          $('a#download').click(function(event) {
          event.preventDefault();

          const filename = 'hose.rvt';
          const bucketKey = 'adn-test';

          const settings = {
          crossDomain: true,
          url: 'https://developer.api.autodesk.com/oss/v2/buckets/' + bucketKey + ' /objects/' + filename,
          method: 'GET',
          dataType: 'binary',
          processData: false,
          headers: {
          Authorization: 'Bearer YOUR_ACCESS_TOKEN',
          Content-Type: 'application/octet-stream'
          }
          };

          $.ajax(settings).done(function (blob, textStatus, jqXHR) {
          console.log(blob );
          console.log(textStatus);

          if( navigator.msSaveBlob )
          return navigator.msSaveBlob(blob, filename);

          const url = URL.createObjectURL(blob);
          const a = document.createElement('a');
          a.style = 'display: none';
          document.body.appendChild(a);

          a.href = url;
          a.download = filename;
          a.click();
          URL.revokeObjectURL(url);
          });
          });
          })





          share|improve this answer





















          • I have tried to use the code above but I am getting errors regarding XMLHttpRequest and my origin is blocked by CORS policy
            – Nathan Hurley
            Dec 3 at 12:03















          up vote
          0
          down vote













          You refer my answer here (Download BIM360 Docs file using Javascript) to download files from Forge OSS bucket.



          In this suggestion, I extended the jQuery function to creates new XMLHttpRequest and passes all the received data back to the jQuery.



          /**
          *
          * jquery.binarytransport.js
          *
          * @description. jQuery ajax transport for making binary data type requests.
          * @version 1.0
          * @author Henry Algus <henryalgus@gmail.com>
          *
          */
          // use this transport for "binary" data type
          $.ajaxTransport("+binary", function(options, originalOptions, jqXHR) {
          // check for conditions and support for blob / arraybuffer response type
          if (window.FormData && ((options.dataType && (options.dataType == 'binary')) || (options.data && ((window.ArrayBuffer && options.data instanceof ArrayBuffer) || (window.Blob && options.data instanceof Blob))))) {
          return {
          // create new XMLHttpRequest
          send: function(headers, callback) {
          // setup all variables
          var xhr = new XMLHttpRequest(),
          url = options.url,
          type = options.type,
          async = options.async || true,
          // blob or arraybuffer. Default is blob
          dataType = options.responseType || "blob",
          data = options.data || null,
          username = options.username || null,
          password = options.password || null;

          xhr.addEventListener('load', function() {
          var data = {};
          data[options.dataType] = xhr.response;
          // make callback and send data
          callback(xhr.status, xhr.statusText, data, xhr.getAllResponseHeaders());
          });

          xhr.open(type, url, async, username, password);

          // setup custom headers
          for (var i in headers) {
          xhr.setRequestHeader(i, headers[i]);
          }

          xhr.responseType = dataType;
          xhr.send(data);
          },
          abort: function() {
          jqXHR.abort();
          }
          };
          }
          });


          Afterward, you can simply replace values of filename, bucketKey and YOUR_ACCESS_TOKEN to yours to download files on the website directly. However, it could be very unsafe, please see the comment here



          $(function() {

          $('a#download').click(function(event) {
          event.preventDefault();

          const filename = 'hose.rvt';
          const bucketKey = 'adn-test';

          const settings = {
          crossDomain: true,
          url: 'https://developer.api.autodesk.com/oss/v2/buckets/' + bucketKey + ' /objects/' + filename,
          method: 'GET',
          dataType: 'binary',
          processData: false,
          headers: {
          Authorization: 'Bearer YOUR_ACCESS_TOKEN',
          Content-Type: 'application/octet-stream'
          }
          };

          $.ajax(settings).done(function (blob, textStatus, jqXHR) {
          console.log(blob );
          console.log(textStatus);

          if( navigator.msSaveBlob )
          return navigator.msSaveBlob(blob, filename);

          const url = URL.createObjectURL(blob);
          const a = document.createElement('a');
          a.style = 'display: none';
          document.body.appendChild(a);

          a.href = url;
          a.download = filename;
          a.click();
          URL.revokeObjectURL(url);
          });
          });
          })





          share|improve this answer





















          • I have tried to use the code above but I am getting errors regarding XMLHttpRequest and my origin is blocked by CORS policy
            – Nathan Hurley
            Dec 3 at 12:03













          up vote
          0
          down vote










          up vote
          0
          down vote









          You refer my answer here (Download BIM360 Docs file using Javascript) to download files from Forge OSS bucket.



          In this suggestion, I extended the jQuery function to creates new XMLHttpRequest and passes all the received data back to the jQuery.



          /**
          *
          * jquery.binarytransport.js
          *
          * @description. jQuery ajax transport for making binary data type requests.
          * @version 1.0
          * @author Henry Algus <henryalgus@gmail.com>
          *
          */
          // use this transport for "binary" data type
          $.ajaxTransport("+binary", function(options, originalOptions, jqXHR) {
          // check for conditions and support for blob / arraybuffer response type
          if (window.FormData && ((options.dataType && (options.dataType == 'binary')) || (options.data && ((window.ArrayBuffer && options.data instanceof ArrayBuffer) || (window.Blob && options.data instanceof Blob))))) {
          return {
          // create new XMLHttpRequest
          send: function(headers, callback) {
          // setup all variables
          var xhr = new XMLHttpRequest(),
          url = options.url,
          type = options.type,
          async = options.async || true,
          // blob or arraybuffer. Default is blob
          dataType = options.responseType || "blob",
          data = options.data || null,
          username = options.username || null,
          password = options.password || null;

          xhr.addEventListener('load', function() {
          var data = {};
          data[options.dataType] = xhr.response;
          // make callback and send data
          callback(xhr.status, xhr.statusText, data, xhr.getAllResponseHeaders());
          });

          xhr.open(type, url, async, username, password);

          // setup custom headers
          for (var i in headers) {
          xhr.setRequestHeader(i, headers[i]);
          }

          xhr.responseType = dataType;
          xhr.send(data);
          },
          abort: function() {
          jqXHR.abort();
          }
          };
          }
          });


          Afterward, you can simply replace values of filename, bucketKey and YOUR_ACCESS_TOKEN to yours to download files on the website directly. However, it could be very unsafe, please see the comment here



          $(function() {

          $('a#download').click(function(event) {
          event.preventDefault();

          const filename = 'hose.rvt';
          const bucketKey = 'adn-test';

          const settings = {
          crossDomain: true,
          url: 'https://developer.api.autodesk.com/oss/v2/buckets/' + bucketKey + ' /objects/' + filename,
          method: 'GET',
          dataType: 'binary',
          processData: false,
          headers: {
          Authorization: 'Bearer YOUR_ACCESS_TOKEN',
          Content-Type: 'application/octet-stream'
          }
          };

          $.ajax(settings).done(function (blob, textStatus, jqXHR) {
          console.log(blob );
          console.log(textStatus);

          if( navigator.msSaveBlob )
          return navigator.msSaveBlob(blob, filename);

          const url = URL.createObjectURL(blob);
          const a = document.createElement('a');
          a.style = 'display: none';
          document.body.appendChild(a);

          a.href = url;
          a.download = filename;
          a.click();
          URL.revokeObjectURL(url);
          });
          });
          })





          share|improve this answer












          You refer my answer here (Download BIM360 Docs file using Javascript) to download files from Forge OSS bucket.



          In this suggestion, I extended the jQuery function to creates new XMLHttpRequest and passes all the received data back to the jQuery.



          /**
          *
          * jquery.binarytransport.js
          *
          * @description. jQuery ajax transport for making binary data type requests.
          * @version 1.0
          * @author Henry Algus <henryalgus@gmail.com>
          *
          */
          // use this transport for "binary" data type
          $.ajaxTransport("+binary", function(options, originalOptions, jqXHR) {
          // check for conditions and support for blob / arraybuffer response type
          if (window.FormData && ((options.dataType && (options.dataType == 'binary')) || (options.data && ((window.ArrayBuffer && options.data instanceof ArrayBuffer) || (window.Blob && options.data instanceof Blob))))) {
          return {
          // create new XMLHttpRequest
          send: function(headers, callback) {
          // setup all variables
          var xhr = new XMLHttpRequest(),
          url = options.url,
          type = options.type,
          async = options.async || true,
          // blob or arraybuffer. Default is blob
          dataType = options.responseType || "blob",
          data = options.data || null,
          username = options.username || null,
          password = options.password || null;

          xhr.addEventListener('load', function() {
          var data = {};
          data[options.dataType] = xhr.response;
          // make callback and send data
          callback(xhr.status, xhr.statusText, data, xhr.getAllResponseHeaders());
          });

          xhr.open(type, url, async, username, password);

          // setup custom headers
          for (var i in headers) {
          xhr.setRequestHeader(i, headers[i]);
          }

          xhr.responseType = dataType;
          xhr.send(data);
          },
          abort: function() {
          jqXHR.abort();
          }
          };
          }
          });


          Afterward, you can simply replace values of filename, bucketKey and YOUR_ACCESS_TOKEN to yours to download files on the website directly. However, it could be very unsafe, please see the comment here



          $(function() {

          $('a#download').click(function(event) {
          event.preventDefault();

          const filename = 'hose.rvt';
          const bucketKey = 'adn-test';

          const settings = {
          crossDomain: true,
          url: 'https://developer.api.autodesk.com/oss/v2/buckets/' + bucketKey + ' /objects/' + filename,
          method: 'GET',
          dataType: 'binary',
          processData: false,
          headers: {
          Authorization: 'Bearer YOUR_ACCESS_TOKEN',
          Content-Type: 'application/octet-stream'
          }
          };

          $.ajax(settings).done(function (blob, textStatus, jqXHR) {
          console.log(blob );
          console.log(textStatus);

          if( navigator.msSaveBlob )
          return navigator.msSaveBlob(blob, filename);

          const url = URL.createObjectURL(blob);
          const a = document.createElement('a');
          a.style = 'display: none';
          document.body.appendChild(a);

          a.href = url;
          a.download = filename;
          a.click();
          URL.revokeObjectURL(url);
          });
          });
          })






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 23 at 6:39









          Eason Kang

          1,658127




          1,658127












          • I have tried to use the code above but I am getting errors regarding XMLHttpRequest and my origin is blocked by CORS policy
            – Nathan Hurley
            Dec 3 at 12:03


















          • I have tried to use the code above but I am getting errors regarding XMLHttpRequest and my origin is blocked by CORS policy
            – Nathan Hurley
            Dec 3 at 12:03
















          I have tried to use the code above but I am getting errors regarding XMLHttpRequest and my origin is blocked by CORS policy
          – Nathan Hurley
          Dec 3 at 12:03




          I have tried to use the code above but I am getting errors regarding XMLHttpRequest and my origin is blocked by CORS policy
          – Nathan Hurley
          Dec 3 at 12:03


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53434381%2fdownload-a-file-on-autodesk-forge-using-net%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Trompette piccolo

          Slow SSRS Report in dynamic grouping and multiple parameters

          Simon Yates (cyclisme)