בחירת הסוג של reCAPTCHA
קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
בחירת סוג ה-reCAPTCHA יש ארבעה סוגים של reCAPTCHA שניתן לבחור מביניהם כשיוצרים אתר חדש.

reCAPTCHA גרסה 3
גרסה 3 של reCAPTCHA מאפשרת לכם לוודא שהאינטראקציה לגיטימית בלי שום אינטראקציה של המשתמש. זהו API בלבד של JavaScript שמחזיר ציון, ומעניק לכם את היכולת לנקוט פעולה בהקשר של האתר שלכם: למשל דרישה לגורמים נוספים של אימות, שליחת פוסט לבקרה או ויסות נתונים (throttle) בוטים שעשויים להעתיק תוכן.
תיבת סימון של reCAPTCHA גרסה 2 ('אני לא רובוט')
תיבת הסימון "אני לא רובוט" מחייבת את המשתמש ללחוץ על תיבת סימון שמציינת שהמשתמש אינו רובוט. המשתמש יקבל הודעה מיד (ללא CAPTCHA) או שהוא יצטרך לאמת אם הוא בן אדם או לא. זו האפשרות הפשוטה ביותר לשילוב עם, והיא דורשת רק שתי שורות של HTML כדי לעבד את תיבת הסימון.

reCAPTCHA גרסה 2 (תג reCAPTCHA בלתי נראה)
תג reCAPTCHA הבלתי נראה לא מחייב את המשתמש ללחוץ על תיבת סימון, אלא אפשר להפעיל אותו ישירות כשהמשתמש לוחץ על לחצן קיים באתר או שאפשר להפעיל אותו באמצעות קריאה ל-API של JavaScript. השילוב מחייב קריאה חוזרת ב-JavaScript לאחר השלמת האימות של reCAPTCHA. כברירת מחדל, רק התנועה החשודה ביותר תוצג הנחיה לפתור captcha. כדי לשנות את ההתנהגות הזו, צריך לערוך את ההעדפה לגבי אבטחת האתר בהגדרות המתקדמות.

reCAPTCHA גרסה 2 (Android)
ספריית reCAPTCHA Android היא חלק מממשקי ה-API של SafetyNet עבור Google Play Services. הספרייה הזו מספקת ממשקי API מקוריים של Android שאפשר לשלב ישירות באפליקציה. צריך להגדיר את Google Play Services באפליקציה ולהתחבר אל GoogleApiClient
לפני שמפעילים את reCAPTCHA API. הפעולה הזו תעביר את המשתמש באופן מיידי (ללא בקשת CAPTCHA) או תאתגר אותו לאמת שהוא בן אדם.
reCAPTCHA גרסה 1 – כיבוי
שירות reCAPTCHA גרסה 1 הושבת מאז מרץ 2018. יש להשתמש באחת מהאפשרויות שלמעלה.
אלא אם צוין אחרת, התוכן של דף זה הוא ברישיון Creative Commons Attribution 4.0 ודוגמאות הקוד הן ברישיון Apache 2.0. לפרטים, ניתן לעיין במדיניות האתר Google Developers. Java הוא סימן מסחרי רשום של חברת Oracle ו/או של השותפים העצמאיים שלה.
עדכון אחרון: 2025-07-25 (שעון UTC).
[null,null,["עדכון אחרון: 2025-07-25 (שעון UTC)."],[[["\u003cp\u003eThere are four types of reCAPTCHA available: reCAPTCHA v3, reCAPTCHA v2 ("I'm not a robot" Checkbox), reCAPTCHA v2 (Invisible reCAPTCHA badge), and reCAPTCHA v2 (Android).\u003c/p\u003e\n"],["\u003cp\u003ereCAPTCHA v3 verifies interactions without user input, returning a score for site-specific actions like authentication or bot throttling.\u003c/p\u003e\n"],["\u003cp\u003ereCAPTCHA v2 options offer checkbox and invisible badge variations, prompting users with challenges based on suspicion levels and allowing integration through HTML or JavaScript.\u003c/p\u003e\n"],["\u003cp\u003eThe reCAPTCHA Android library, part of Google Play services SafetyNet APIs, provides native integration for Android apps, requiring setup and connection to Google Play services.\u003c/p\u003e\n"]]],["There are four reCAPTCHA types: v3, which verifies interactions without user input via a JavaScript API; v2 \"I'm not a robot\" Checkbox, requiring a user click, potentially followed by a challenge; v2 Invisible badge, triggered by a button click or JavaScript, prompting a captcha only for suspicious traffic; and v2 Android, using Android APIs. reCAPTCHA v1 is discontinued. v2 versions require a potential challenge, v3 doesn't require any user interaction.\n"],null,["# Choosing the type of reCAPTCHA There are four types of reCAPTCHA to choose from when creating a new site.\n\nreCAPTCHA v3\n------------\n\nreCAPTCHA v3 allows you to verify if an interaction is legitimate without any user interaction. It is a pure JavaScript API returning a score, giving you the ability to take action in the context of your site: for instance requiring additional factors of authentication, sending a post to moderation, or throttling bots that may be scraping content.\n\nreCAPTCHA v2 (\"I'm not a robot\" Checkbox)\n-----------------------------------------\n\nThe \"I'm not a robot\" Checkbox requires the user to click a checkbox indicating the user is not a robot. This will either pass the user immediately (with No CAPTCHA) or challenge them to validate whether or not they are human. This is the simplest option to integrate with and only requires two lines of HTML to render the checkbox.\n\nreCAPTCHA v2 (Invisible reCAPTCHA badge)\n----------------------------------------\n\nThe invisible reCAPTCHA badge does not require the user to click on a checkbox, instead it is invoked directly when the user clicks on an existing button on your site or can be invoked via a JavaScript API call. The integration requires a JavaScript callback when reCAPTCHA verification is complete. By default only the most suspicious traffic will be prompted to solve a captcha. To alter this behavior edit your site security preference under advanced settings.\n\nreCAPTCHA v2 (Android)\n----------------------\n\nThe reCAPTCHA Android library is part of the [Google Play services SafetyNet APIs](https://developer.android.com/training/safetynet/index.html). This library provides native Android APIs that you can integrate directly into an app. You should set up [Google Play services](https://developers.google.com/android/guides/api-client) in your app and connect to the `GoogleApiClient` before invoking the reCAPTCHA API. This will either pass the user through immediately (without a CAPTCHA prompt) or challenge them to validate whether they are human.\n\nreCAPTCHA v1 - Shut down\n------------------------\n\nreCAPTCHA v1 has been shut down since March 2018. Please use an option above."]]