自定义元素内的Google Auth回调

时间:2018-07-22 16:15:27

标签: javascript google-authentication custom-element

我正在尝试使用以下代码将google auth放入自定义元素。它的呈现正确,并且按钮导致常规的google auth弹出窗口触发,但是完成登录后,不会触发回调-没有任何日志被触发,也没有错误消息。有什么建议吗?

我的猜测是,我正在使用类,这与我在某个地方读取字符串需要引用全局函数有关。但这当然是不可能的

customElements.define(
    "google-auth",
    class extends HTMLElement {
        constructor() {
            super();
            this._profile = {};
        }

        onSignIn(googleUser) {
            var profile = googleUser.getBasicProfile();
            console.log("ID: " + profile.getId()); // Do not send to your backend! Use an ID token instead.
            console.log("Name: " + profile.getName());
            console.log("Image URL: " + profile.getImageUrl());
            console.log("Email: " + profile.getEmail()); // This is null if the 'email' scope is not present.
            this._profile = profile;
        };

        connectedCallback() {
            console.log("google-auth");

            this.innerHTML = `
            <div class="g-signin2" data-onsuccess="onSignIn"></div>
        `;
        }
    }
);

1 个答案:

答案 0 :(得分:0)

您还可以明确地定义成功回调,如custom Sign-In button上的Google Auth文档所述。

例如:

connectedCallback() {
    console.log("google-auth");

    this.innerHTML = `
        <div id="my-signin2"></div>
    `;

    gapi.signin2.render('my-signin2', {
        'theme': 'dark',
        'onsuccess' : this.onSignIn.bind(this)
    });
}

如果这样做,则在调用async defer时必须已经加载Google库(即没有connectedCallback()属性)。

如果要保留async defer属性,则必须使用全局render()函数,该函数将调用自定义元素方法来呈现按钮:

function render() { 
    GA.render() // where GA is the custom element id
}

class extends HTMLElement {
   render() {
       gapi.signin2.render('my-signin2', 
       ...
   }
}