/** * 画面読み込み時の処理 */ var storage = window.sessionStorage; $(document).ready(function() { console.log("index.html ready"); sessionStorage.clear(); // セッションストレージクリア // Amazon Cognito 認証情報プロバイダーの初期化 AWSCognito.config.region = 'ap-northeast-1'; // リージョン AWSCognito.config.credentials = new AWS.CognitoIdentityCredentials({ IdentityPoolId: 'ap-northeast-1:de64377f-d9e3-4fd9-b531-b85639668377' }); // 「login」ボタン押下時 $("#loginButton").click(function(event) { signIn(); }); });