最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - firebase docs reference grecaptcha but never import or define it - Stack Overflow

programmeradmin1浏览0评论

From :

If signInWithPhoneNumber results in an error, reset the reCAPTCHA so the user can try again:

grecaptcha.reset(window.recaptchaWidgetId);

// Or, if you haven't stored the widget ID:
window.recaptchaVerifier.render().then(function(widgetId) {
  grecaptcha.reset(widgetId);
}

But grecaptcha is never defined. Do I have to import it from somewhere?

From https://firebase.google./docs/auth/web/phone-auth:

If signInWithPhoneNumber results in an error, reset the reCAPTCHA so the user can try again:

grecaptcha.reset(window.recaptchaWidgetId);

// Or, if you haven't stored the widget ID:
window.recaptchaVerifier.render().then(function(widgetId) {
  grecaptcha.reset(widgetId);
}

But grecaptcha is never defined. Do I have to import it from somewhere?

Share Improve this question asked Oct 11, 2017 at 18:41 Andrew StrommeAndrew Stromme 2,2301 gold badge24 silver badges35 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 11

Looks like it is automatically imported by firebase. However, because I was piling code from ES2015 I needed to add

/* global grecaptcha */

to the top of my js file to make it visible by my code.

The Firebase Auth JS library will pull the grecaptcha library dynamically if it is not already included. Otherwise, if you already include it: https://www.google./recaptcha/api.js, then it will just use that library.

发布评论

评论列表(0)

  1. 暂无评论