2
我正在嘗試給出的示例here。具體地講,下面的代碼是給我找麻煩:在Google Drive示例中未調用handleClientLoad函數
<script type="text/javascript" src="https://apis.google.com/js/client.js?onload=handleClientLoad"></script>
<script type="text/javascript">
var CLIENT_ID = 'xxx...';
var SCOPES = [
'https://www.googleapis.com/auth/drive.file',
'email',
'profile',
];
function handleClientLoad() {
alert("Hi");
checkAuth();
}
我跟蹤,文件client.js
是我的瀏覽器下載。但是,handleClientLoad()
未被調用。
該示例是否完整且可運行或者是否有其他需要?