首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何使用Javascript Google在插入文件时更改Google文件的可访问性

如何使用Javascript Google在插入文件时更改Google文件的可访问性
EN

Stack Overflow用户
提问于 2016-11-09 13:29:08
回答 1查看 278关注 0票数 0

我尝试使用来上传新图像或将图片插入到我的CMS中。

起作用了。我可以得到图像URL。但问题是:默认情况下,上传到Google的文件的可访问性是私有的(只有作为所有者的我才能通过Login帐户查看它)。但是,当我手动将文件的可访问性设置更改为Public或Google站点的链接时,浏览器上的任何人都可以查看这些图像。

我在这里的观点是:如何使用更改Google文件的可访问性,使用插入该文件(更改/设置可访问性给Public或任何有链接的人)。下面是我的当前代码。

代码语言:javascript
复制
<script>
    //<![CDATA[
    (function() {
        /**
         * Initialise a Google Driver file picker
         */
        var FilePicker = window.FilePicker = function(options) {
            // Config
            this.apiKey = options.apiKey;
            this.clientId = options.clientId;

            // Elements
            this.buttonEl = options.buttonEl;

            // Events
            this.onSelect = options.onSelect;

            this.buttonEl.addEventListener('click', this.open.bind(this));

            // Disable the button until the API loads, as it won&#39;t work properly until then.
            this.buttonEl.disabled = true;

            // Load the drive API
            gapi.client.setApiKey(this.apiKey);
            gapi.client.load('drive', 'v2', this._driveApiLoaded.bind(this));
            google.load('picker', '1', {
                callback: this._pickerApiLoaded.bind(this)
            });
        }


        FilePicker.prototype = {
            /**
             * Open the file picker.
             */
            open: function() {
                // Check if the user has already authenticated
                var token = gapi.auth.getToken();
                if (token) {
                    this._showPicker();
                } else {
                    // The user has not yet authenticated with Google
                    // We need to do the authentication before displaying the Drive picker.
                    this._doAuth(false, function() {
                        this._showPicker();
                    }.bind(this));
                }
            },

            /**
             * Show the file picker once authentication has been done.
             * @private
             */
            _showPicker: function() {
                var accessToken = gapi.auth.getToken().access_token;
                var view = new google.picker.DocsView();
                var uploadView = new google.picker.DocsUploadView();
                var viewss = new google.picker.View(google.picker.ViewId.DOCS);
                viewss.setMimeTypes('image/png,image/jpeg,image/gif,image/jpg');
                view.setIncludeFolders(true);
                this.picker = new google.picker.PickerBuilder()
                    .addView(google.picker.ViewId.DOCS_IMAGES)
                    .addView(viewss)
                    .addView(uploadView)
                    .setAppId(this.clientId)
                    .setDeveloperKey(this.apiKey)
                    .setOAuthToken(accessToken)
                    .setCallback(this._pickerCallback.bind(this))
                    .build()
                    .setVisible(true);
            },

            /**
             * Called when a file has been selected in the Google Drive file picker.
             * @private
             */
            _pickerCallback: function(data) {
                if (data[google.picker.Response.ACTION] == google.picker.Action.PICKED) {
                    var fruits, fLen, i;

                    fruits = data[google.picker.Response.DOCUMENTS];
                    fLen = fruits.length;
                    for (i = 0; i < fLen; i++) {

                        var file = fruits[i];
                        var id = file[google.picker.Document.ID];
                        var request = gapi.client.drive.files.get({
                            fileId: id
                        });

                        request.execute(this._fileGetCallback.bind(this));
                    }
                }
            },
            /**
             * Called when file details have been retrieved from Google Drive.
             * @private
             */
            _fileGetCallback: function(file) {
                if (this.onSelect) {
                    this.onSelect(file);
                }
            },

            /**
             * Called when the Google Drive file picker API has finished loading.
             * @private
             */
            _pickerApiLoaded: function() {
                this.buttonEl.disabled = false;
            },

            /**
             * Called when the Google Drive API has finished loading.
             * @private
             */
            _driveApiLoaded: function() {
                this._doAuth(true);
            },

            /**
             * Authenticate with Google Drive via the Google JavaScript API.
             * @private
             */
            _doAuth: function(immediate, callback) {
                gapi.auth.authorize({
                    client_id: this.clientId,
                    scope: 'https://www.googleapis.com/auth/drive',
                    immediate: immediate
                }, callback);
            }

        };
    }());
    //]]>
</script>
<script>
        function initPicker() {

            var picker = new FilePicker({
                apiKey: 'HAHAblaBlaWTFashjahsgtP6BwWPf3Liukk',
                clientId: '978946248407-WTFhahaBlaBla4q0f5c.apps.googleusercontent.com',
                buttonEl: document.getElementById('pick_image'),
                onSelect: function(file) {                  
console.log(JSON.stringify(file)); 
console.log(file); 
console.log(file.title);
console.log(file.webContentLink);
$('#post-editor').append('<a  href="'+file.webContentLink+'" class="center_img"><img src="'+file.webContentLink+'"/></a>');     
                }
            });
        }
</script>

<script src='https://www.google.com/jsapi?key=HAHAblaBlaWTFashjahsgtP6BwWPf3Liukk'></script>

<script src='https://apis.google.com/js/client.js?onload=initPicker'></script>

<button id='pick_image'>CLICK HERE INSERT OR UPLOAD IMAGE</button>
<!-- Image HTML will append to #post-editor below -->

<div id='post-editor' contenteditable='true' style='width:100%; height:200px'></div>
EN

回答 1

Stack Overflow用户

发布于 2016-11-10 08:39:31

嗯,我认为您需要将一个权限设置为文件。您需要设置的是roletype

下面是文档中的示例代码。

代码语言:javascript
复制
function insertPermission(fileId, value, type, role) {
var body = {
'value': value,
'type': type,
'role': role
};
var request = gapi.client.drive.permissions.insert({
'fileId': fileId,
'resource': body
});
request.execute(function(resp) { });
}

有关更多信息,请查看这些相关问题:

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/40508189

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档