実現したいこと
WEBアプリのfirebaseへのデプロイ・動作
発生している問題・エラーメッセージ
・firebase Authで実装したログインページでログイン後、別モジュール(HEREMap.php)をリダイレクト先として指定しているが、finderが開き、ファイルの保存を求められるような画面になってしまう。(別モジュール(HEREMap.php)へリダイレクトして欲しい)
・ローカル環境での動作は確認済み
ソースコード
class Index { static init() { // Firebaseの初期化 var config = { apiKey: "AIzaSyBXw-hKe4lAnSjylUGXEKKwxMEfN0yZHS0", authDomain: "heremap-72f1d.firebaseapp.com", databaseURL: "https://heremap-72f1d.firebaseio.com", projectId: "heremap-72f1d", storageBucket: "heremap-72f1d.appspot.com", //messagingSenderId: "" }; firebase.initializeApp(config); // FirebaseUIインスタンス初期化 var ui = new firebaseui.auth.AuthUI(firebase.auth()); // FirebaseUIの各種設定 var uiConfig = { callbacks: { signInSuccess: function (currentUser, credential, redirectUrl) { // サインイン成功時のコールバック関数 // 戻り値で自動的にリダイレクトするかどうかを指定 return true; }, uiShown: function () { // FirebaseUIウィジェット描画完了時のコールバック関数 // 読込中で表示しているローダー要素を消す document.getElementById('loader').style.display = 'none'; } }, signInSuccessUrl: './HEREMap.php', signInOptions: [ // サポートするプロバイダを指定 firebase.auth.EmailAuthProvider.PROVIDER_ID, ], credentialHelper: firebaseui.auth.CredentialHelper.NONE }; // FirebaseUI描画開始 ui.start('#firebaseui-auth-container', uiConfig); } }
試したこと
URLの変更
あなたの回答
tips
プレビュー