Download zip file using OIC integration
Summary:
Download zip file using OIC integration
Able to download a csv file not no way to get a zip file.
Attached detail with screenshots in separate .doc file
Content (required):
Version (include the version you are using, if applicable):
Code Snippet (add any code snippets that support your topic, if applicable):
/*
Copyright (c) 2018, Oracle and/or its affiliates.
The Universal Permissive License (UPL), Version 1.0
*/
define([], function() {
'use strict';
var PageModule = function PageModule() {};
PageModule.prototype.download = function(fileName, specFileContent) {
var element = document.createElement('a');
// This works with csv.
element.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(specFileContent));