I'm trying to share a file in my Google Drive application to Google Plus via Javascript.
I followed the example code at this page: https://developers.google.com/drive/manage-sharing#add_the_dialog_script
I registered my app to the Google Drive SDK, I verified my app's URL with the Webmaster Tools (not sure that was necessary, but just in case) and put this code after the page load:
var clientId = 'GOOGLE DRIVE SDK CLIENT ID';
var apiKey = 'MY API KEY';
var scopes = ['https://www.googleapis.com/auth/drive.readonly'];
var access_token = ''; // Set after access is granted
var share_client; // Set after access is grated
function handleClientLoad() {
gapi.client.setApiKey(apiKey);
window.setTimeout(checkAuth,1);
}
function checkAuth() {
gapi.auth.authorize({client_id: clientId, scope: scopes, immediate: true}, handleAuthResult);
}
function handleAuthResult(authResult) {
if (authResult && !authResult.error) {
init = function() {
share_client = new gapi.drive.share.ShareClient('756276963659');
}
gapi.load('drive-share', init);
} else {
console.log("error");
}
}
function handleAuthClick(event) {
gapi.auth.authorize({client_id: clientId, scope: scopes, immediate: false}, handleAuthResult);
}
A button calls handleAuthClick while handleClientLoad is called upon page load by:
<script src="https://apis.google.com/js/client.js?onload=handleClientLoad"></script>
Then to share an item:
if (isShareEnabled()){
share_client.setItemIds([image.fileID]);
share_client.showSettingsDialog();
}
That's when a window appears with the text "Loading..." and a spinning icon stays on the screen for a few seconds and then the alert message "Sorry, sharing is unavailable at this time. Please try again later." appears.
By looking at the Javascript console:
Uncaught Error: SYNTAX_ERR: DOM Exception 12 2956664786-v2-doclist_share.js:453
Refused to display document because display forbidden by X-Frame-Options.
Tested on Chrome 21 and Firefox 14, same problem.
Is this just a temporary issue or am I doing something wrong?
edit: I've also tried to use my Client ID for web applications instead of the Client ID for Google Drive SDK, same result.
edit2: the "Refused to display document because display forbidden by X-Frame-Options" seems more like a warning, whereas "Uncaught Error: SYNTAX_ERR: DOM Exception 12 2956664786-v2-doclist_share.js:453" stops the execution. DOM Exception 12 is a syntax error, e.g. a property has been mis-set.