{"id":62267,"date":"2024-02-13T09:18:03","date_gmt":"2024-02-13T14:18:03","guid":{"rendered":"https:\/\/memberpress.com\/docs\/2-factor-authentication-integration-by-plugin-contributors\/"},"modified":"2025-10-27T08:16:35","modified_gmt":"2025-10-27T12:16:35","slug":"2-factor-authentication-integration-by-plugin-contributors","status":"publish","type":"ht_kb","link":"https:\/\/memberpress.com\/fr\/docs\/2-factor-authentication-integration-by-plugin-contributors\/","title":{"rendered":"Int\u00e9gration de l'authentification \u00e0 2 facteurs par les contributeurs du plugin"},"content":{"rendered":"<p>Cette documentation vous montrera comment installer et activer l'authentification \u00e0 deux facteurs pour votre site MemberPress. Elle explique \u00e9galement comment faire en sorte que le membre soit oblig\u00e9 d'utiliser l'authentification \u00e0 deux facteurs pour pouvoir se connecter.<\/p>\n\n\n\n<p class=\"wp-block-ht-blocks-messages wp-block-hb-message wp-block-hb-message--withicon is-style-info\"><strong>Remarque :<\/strong> Cette int\u00e9gration est disponible pour MemberPress <strong>Croissance<\/strong> et <strong>\u00c9chelle<\/strong> Les membres du plan de lancement peuvent passer au plan de croissance et d'expansion. Si vous \u00eates abonn\u00e9 au plan de lancement, vous pouvez passer au plan de croissance et d'expansion. Pour passer \u00e0 un plan sup\u00e9rieur, cliquez sur l'ic\u00f4ne <strong>Plan de changement<\/strong> sur votre<a href=\"https:\/\/memberpress.com\/account\/subscriptions\/\"> <strong>page du compte<\/strong><\/a>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Installation :<\/h3>\n\n\n\n<p>MemberPress dispose d\u00e9j\u00e0 de l'int\u00e9gration, il n'y a donc rien \u00e0 activer dans MemberPress.<\/p>\n\n\n\n<p>Tout d'abord, vous devez vous rendre sur le site <strong>WordPress &gt; Plugins &gt; Ajouter un nouveau<\/strong> page et recherchez \u201c<strong>Deux facteurs<\/strong>\u201cUne fois les plugins t\u00e9l\u00e9charg\u00e9s, vous devrez installer le plugin appel\u00e9 Two-factor by Plugin Contributors :<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/memberpress.com\/wp-content\/uploads\/2024\/02\/file-BzIVtJZgVA.png\" alt=\"\"\/><\/figure>\n\n\n\n<p>Une fois install\u00e9, il suffit de l'activer pour que tout soit pr\u00eat.\u00a0<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Utilisation de l'authentification \u00e0 deux facteurs :<\/h3>\n\n\n\n<p>Vos membres verront d\u00e9sormais un \u00e9l\u00e9ment de menu Authentification \u00e0 deux facteurs sur leur page Compte :<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/memberpress.com\/wp-content\/uploads\/2024\/02\/file-ZZD1uEUASY.png\" alt=\"\"\/><\/figure>\n\n\n\n<p>Apr\u00e8s avoir cliqu\u00e9 sur l'\u00e9l\u00e9ment de menu, ils disposeront de trois options diff\u00e9rentes pour l'authentification \u00e0 deux facteurs :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Courriel<\/strong>: Cette option enverra au membre un e-mail contenant un code de v\u00e9rification chaque fois qu'il essaiera de se connecter.<\/li>\n\n\n\n<li><strong>Mot de passe unique bas\u00e9 sur le temps (TOTP) : <\/strong>Cette option permet d'envoyer un code \u00e0 un appareil qui a scann\u00e9 le code QR chaque fois que le membre tente de se connecter.<\/li>\n\n\n\n<li><strong>Codes de v\u00e9rification de la sauvegarde : <\/strong>Cette option permet de cr\u00e9er 10 codes de v\u00e9rification qui peuvent \u00eatre conserv\u00e9s dans un endroit s\u00fbr au cas o\u00f9 le membre aurait besoin d'un code pour se connecter et n'aurait pas la possibilit\u00e9 de r\u00e9cup\u00e9rer les deux autres options.<\/li>\n<\/ul>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/memberpress.com\/wp-content\/uploads\/2024\/02\/file-ujjZVDQRtw.png\"><\/p>\n\n\n\n<p class=\"wp-block-ht-blocks-messages wp-block-hb-message wp-block-hb-message--withicon is-style-info\"><strong>Remarque : <\/strong>Il existe \u00e9galement une quatri\u00e8me option qui peut appara\u00eetre lorsque WP_DEBUG est d\u00e9fini sur true. Il s'agit d'une option intitul\u00e9e \u201c Dummy Method \u201d (m\u00e9thode factice).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Forcer les membres \u00e0 utiliser l'authentification \u00e0 deux facteurs :<\/h3>\n\n\n\n<p>Les options ci-dessus ne sont que facultatives \u00e0 ce stade, mais si vous souhaitez obliger vos membres \u00e0 utiliser l'authentification \u00e0 deux facteurs, il vous faut un peu de code. Vous pouvez entrer ce code dans votre fichier functions.php ou dans un plugin comme le plugin\u00a0<a href=\"https:\/\/wordpress.org\/plugins\/insert-headers-and-footers\/\">WPCode<\/a>\u00a0(veuillez consulter cet article pour plus de d\u00e9tails) :\u00a0<a href=\"https:\/\/memberpress.com\/fr\/docs\/how-to-add-custom-code-snippets-in-wpcode\/\">Comment ajouter des extraits de code personnalis\u00e9s dans WPCode ?<\/a>):\u00a0<\/p>\n\n\n\n<pre class=\"wp-block-preformatted has-background\" style=\"background-color:#f5f5f5\">function mepr_disable_auto_login($auto_login, $membership_id, $mepr_user) {\n  return false ;\n}\nadd_filter('mepr-auto-login', 'mepr_disable_auto_login', 3, 3) ;\n\nfunction memberpress_two_factor_primary_provider_for_user($provider, $user_id) {\n  if (empty($provider)) {\n    return 'Two_Factor_Email' ;\n  }\n  return $provider ;\n}\nadd_filter('two_factor_primary_provider_for_user', 'memberpress_two_factor_primary_provider_for_user', 1, 2) ;\n\nfunction memberpress_two_factor_enabled_providers_for_user($enabled_providers, $user_ID) {\n  if (!in_array('Two_Factor_Email', $enabled_providers)) {\n    $enabled_providers[] = 'Two_Factor_Email' ;\n  }\n  return $enabled_providers ;\n}\nadd_filter('two_factor_enabled_providers_for_user', 'memberpress_two_factor_enabled_providers_for_user', 1, 2) ;\n<\/pre>\n\n\n\n<p class=\"wp-block-ht-blocks-messages wp-block-hb-message wp-block-hb-message--withicon is-style-alert\"><strong>Remarque : <\/strong>Ce code (ci-dessus) n'appliquera que la m\u00e9thode d'authentification 2FA par courriel de confirmation. Le membre aura toujours la possibilit\u00e9 d'activer les autres m\u00e9thodes \u00e0 partir de la page de son compte.<\/p>","protected":false},"excerpt":{"rendered":"<p>This documentation will show you how to install and activate 2-factor authentication for your MemberPress site. It will also explain how to make it so that the member is required to use 2-factor authentication to be able to log in. Installation: MemberPress already has the integration built in, so nothing needs to be activated within [\u2026]<\/p>\n","protected":false},"author":62252,"comment_status":"open","ping_status":"closed","template":"","format":"standard","meta":{"_acf_changed":false,"om_disable_all_campaigns":false,"_strive_editorial_status":"not-started","_strive_copy_of":0,"inline_featured_image":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","_FSMCFIC_featured_image_caption":"","_FSMCFIC_featured_image_nocaption":"","_FSMCFIC_featured_image_hide":"","_strive_checklists":"\"\"","_strive_active_checklist":"62291e2bb2422","footnotes":""},"ht-kb-category":[1290],"ht-kb-tag":[],"class_list":{"0":"post-62267","1":"ht_kb","2":"type-ht_kb","3":"status-publish","4":"format-standard","6":"ht_kb_category-third-party","7":"entry","8":"has-post-thumbnail"},"acf":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.5.2 - aioseo.com -->\n\t<meta name=\"description\" content=\"This documentation will show you how to install and activate 2-factor authentication for your MemberPress site. It will also explain how to make it so that the member is required to use 2-factor authentication to be able to log in. Note: This integration is available to MemberPress Growth and Scale plan members. If you&#039;re subscribed\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Nikola M\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/memberpress.com\/fr\/docs\/2-factor-authentication-integration-by-plugin-contributors\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.5.2\" \/>\n\t\t<meta property=\"og:locale\" content=\"fr_FR\" \/>\n\t\t<meta property=\"og:site_name\" content=\"MemberPress\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"2 Factor Authentication Integration by Plugin Contributors | MemberPress\" \/>\n\t\t<meta property=\"og:description\" content=\"This documentation will show you how to install and activate 2-factor authentication for your MemberPress site. It will also explain how to make it so that the member is required to use 2-factor authentication to be able to log in. Note: This integration is available to MemberPress Growth and Scale plan members. If you&#039;re subscribed\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/memberpress.com\/fr\/docs\/2-factor-authentication-integration-by-plugin-contributors\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"1650\" \/>\n\t\t<meta property=\"og:image:height\" content=\"1275\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-02-13T14:18:03+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2025-10-27T12:16:35+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/memberpress\/\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@memberpress\" \/>\n\t\t<meta name=\"twitter:title\" content=\"2 Factor Authentication Integration by Plugin Contributors | MemberPress\" \/>\n\t\t<meta name=\"twitter:description\" content=\"This documentation will show you how to install and activate 2-factor authentication for your MemberPress site. It will also explain how to make it so that the member is required to use 2-factor authentication to be able to log in. Note: This integration is available to MemberPress Growth and Scale plan members. If you&#039;re subscribed\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/docs\\\/2-factor-authentication-integration-by-plugin-contributors\\\/#article\",\"name\":\"2 Factor Authentication Integration by Plugin Contributors | MemberPress\",\"headline\":\"2 Factor Authentication Integration by Plugin Contributors\",\"author\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/blog\\\/author\\\/nikolacaseproof-com\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/memberpress.com\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/file-BzIVtJZgVA.png\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/docs\\\/2-factor-authentication-integration-by-plugin-contributors\\\/#articleImage\",\"width\":1000,\"height\":598},\"datePublished\":\"2024-02-13T09:18:03-05:00\",\"dateModified\":\"2025-10-27T08:16:35-04:00\",\"inLanguage\":\"fr-FR\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/docs\\\/2-factor-authentication-integration-by-plugin-contributors\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/docs\\\/2-factor-authentication-integration-by-plugin-contributors\\\/#webpage\"},\"articleSection\":\"Third-Party\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/docs\\\/2-factor-authentication-integration-by-plugin-contributors\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/memberpress.com\\\/fr\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/doc-categories\\\/add-ons\\\/#listItem\",\"name\":\"Add-ons\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/doc-categories\\\/add-ons\\\/#listItem\",\"position\":2,\"name\":\"Add-ons\",\"item\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/doc-categories\\\/add-ons\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/doc-categories\\\/third-party\\\/#listItem\",\"name\":\"Third-Party\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/doc-categories\\\/third-party\\\/#listItem\",\"position\":3,\"name\":\"Third-Party\",\"item\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/doc-categories\\\/third-party\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/docs\\\/2-factor-authentication-integration-by-plugin-contributors\\\/#listItem\",\"name\":\"2 Factor Authentication Integration by Plugin Contributors\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/doc-categories\\\/add-ons\\\/#listItem\",\"name\":\"Add-ons\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/docs\\\/2-factor-authentication-integration-by-plugin-contributors\\\/#listItem\",\"position\":4,\"name\":\"2 Factor Authentication Integration by Plugin Contributors\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/doc-categories\\\/third-party\\\/#listItem\",\"name\":\"Third-Party\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/#organization\",\"name\":\"MemberPress\",\"description\":\"The All-In-One WordPress Membership Plugin\",\"url\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/memberpress.com\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/mp-icon-RGB_Icon-01.jpg\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/docs\\\/2-factor-authentication-integration-by-plugin-contributors\\\/#organizationLogo\",\"width\":1650,\"height\":1275,\"caption\":\"memberpress logo icon\"},\"image\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/docs\\\/2-factor-authentication-integration-by-plugin-contributors\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.instagram.com\\\/memberpress\\\/\",\"https:\\\/\\\/www.pinterest.com\\\/memberpressplugin\\\/\",\"https:\\\/\\\/www.youtube.com\\\/c\\\/MemberPressPlugin\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/memberpress\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/blog\\\/author\\\/nikolacaseproof-com\\\/#author\",\"url\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/blog\\\/author\\\/nikolacaseproof-com\\\/\",\"name\":\"Nikola M\",\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/memberpress.com\\\/wp-content\\\/litespeed\\\/avatar\\\/1edf820c48f9c430f380efe81887b154.jpg?ver=1775141118\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/docs\\\/2-factor-authentication-integration-by-plugin-contributors\\\/#webpage\",\"url\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/docs\\\/2-factor-authentication-integration-by-plugin-contributors\\\/\",\"name\":\"2 Factor Authentication Integration by Plugin Contributors | MemberPress\",\"description\":\"This documentation will show you how to install and activate 2-factor authentication for your MemberPress site. It will also explain how to make it so that the member is required to use 2-factor authentication to be able to log in. Note: This integration is available to MemberPress Growth and Scale plan members. If you're subscribed\",\"inLanguage\":\"fr-FR\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/docs\\\/2-factor-authentication-integration-by-plugin-contributors\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/blog\\\/author\\\/nikolacaseproof-com\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/blog\\\/author\\\/nikolacaseproof-com\\\/#author\"},\"datePublished\":\"2024-02-13T09:18:03-05:00\",\"dateModified\":\"2025-10-27T08:16:35-04:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/#website\",\"url\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/\",\"name\":\"MemberPress\",\"description\":\"The All-In-One WordPress Membership Plugin\",\"inLanguage\":\"fr-FR\",\"publisher\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/fr\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>2 Factor Authentication Integration by Plugin Contributors | MemberPress<\/title>\n\n","aioseo_head_json":{"title":"Int\u00e9gration de l'authentification \u00e0 2 facteurs par les contributeurs du plugin | MemberPress","description":"Cette documentation vous montrera comment installer et activer l'authentification \u00e0 deux facteurs pour votre site MemberPress. Elle explique \u00e9galement comment faire en sorte que le membre soit oblig\u00e9 d'utiliser l'authentification \u00e0 deux facteurs pour pouvoir se connecter. Remarque : cette int\u00e9gration est disponible pour les membres des plans MemberPress Growth et Scale. Si vous \u00eates abonn\u00e9","canonical_url":"https:\/\/memberpress.com\/fr\/docs\/2-factor-authentication-integration-by-plugin-contributors\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/memberpress.com\/fr\/docs\/2-factor-authentication-integration-by-plugin-contributors\/#article","name":"2 Factor Authentication Integration by Plugin Contributors | MemberPress","headline":"2 Factor Authentication Integration by Plugin Contributors","author":{"@id":"https:\/\/memberpress.com\/fr\/blog\/author\/nikolacaseproof-com\/#author"},"publisher":{"@id":"https:\/\/memberpress.com\/fr\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/memberpress.com\/wp-content\/uploads\/2024\/02\/file-BzIVtJZgVA.png","@id":"https:\/\/memberpress.com\/fr\/docs\/2-factor-authentication-integration-by-plugin-contributors\/#articleImage","width":1000,"height":598},"datePublished":"2024-02-13T09:18:03-05:00","dateModified":"2025-10-27T08:16:35-04:00","inLanguage":"fr-FR","mainEntityOfPage":{"@id":"https:\/\/memberpress.com\/fr\/docs\/2-factor-authentication-integration-by-plugin-contributors\/#webpage"},"isPartOf":{"@id":"https:\/\/memberpress.com\/fr\/docs\/2-factor-authentication-integration-by-plugin-contributors\/#webpage"},"articleSection":"Third-Party"},{"@type":"BreadcrumbList","@id":"https:\/\/memberpress.com\/fr\/docs\/2-factor-authentication-integration-by-plugin-contributors\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/memberpress.com\/fr#listItem","position":1,"name":"Home","item":"https:\/\/memberpress.com\/fr","nextItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/fr\/doc-categories\/add-ons\/#listItem","name":"Add-ons"}},{"@type":"ListItem","@id":"https:\/\/memberpress.com\/fr\/doc-categories\/add-ons\/#listItem","position":2,"name":"Add-ons","item":"https:\/\/memberpress.com\/fr\/doc-categories\/add-ons\/","nextItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/fr\/doc-categories\/third-party\/#listItem","name":"Third-Party"},"previousItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/fr#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/memberpress.com\/fr\/doc-categories\/third-party\/#listItem","position":3,"name":"Third-Party","item":"https:\/\/memberpress.com\/fr\/doc-categories\/third-party\/","nextItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/fr\/docs\/2-factor-authentication-integration-by-plugin-contributors\/#listItem","name":"2 Factor Authentication Integration by Plugin Contributors"},"previousItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/fr\/doc-categories\/add-ons\/#listItem","name":"Add-ons"}},{"@type":"ListItem","@id":"https:\/\/memberpress.com\/fr\/docs\/2-factor-authentication-integration-by-plugin-contributors\/#listItem","position":4,"name":"2 Factor Authentication Integration by Plugin Contributors","previousItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/fr\/doc-categories\/third-party\/#listItem","name":"Third-Party"}}]},{"@type":"Organization","@id":"https:\/\/memberpress.com\/fr\/#organization","name":"MemberPress","description":"The All-In-One WordPress Membership Plugin","url":"https:\/\/memberpress.com\/fr\/","logo":{"@type":"ImageObject","url":"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg","@id":"https:\/\/memberpress.com\/fr\/docs\/2-factor-authentication-integration-by-plugin-contributors\/#organizationLogo","width":1650,"height":1275,"caption":"memberpress logo icon"},"image":{"@id":"https:\/\/memberpress.com\/fr\/docs\/2-factor-authentication-integration-by-plugin-contributors\/#organizationLogo"},"sameAs":["https:\/\/www.instagram.com\/memberpress\/","https:\/\/www.pinterest.com\/memberpressplugin\/","https:\/\/www.youtube.com\/c\/MemberPressPlugin","https:\/\/www.linkedin.com\/company\/memberpress\/"]},{"@type":"Person","@id":"https:\/\/memberpress.com\/fr\/blog\/author\/nikolacaseproof-com\/#author","url":"https:\/\/memberpress.com\/fr\/blog\/author\/nikolacaseproof-com\/","name":"Nikola M","image":{"@type":"ImageObject","url":"https:\/\/memberpress.com\/wp-content\/litespeed\/avatar\/1edf820c48f9c430f380efe81887b154.jpg?ver=1775141118"}},{"@type":"WebPage","@id":"https:\/\/memberpress.com\/fr\/docs\/2-factor-authentication-integration-by-plugin-contributors\/#webpage","url":"https:\/\/memberpress.com\/fr\/docs\/2-factor-authentication-integration-by-plugin-contributors\/","name":"2 Factor Authentication Integration by Plugin Contributors | MemberPress","description":"This documentation will show you how to install and activate 2-factor authentication for your MemberPress site. It will also explain how to make it so that the member is required to use 2-factor authentication to be able to log in. Note: This integration is available to MemberPress Growth and Scale plan members. If you're subscribed","inLanguage":"fr-FR","isPartOf":{"@id":"https:\/\/memberpress.com\/fr\/#website"},"breadcrumb":{"@id":"https:\/\/memberpress.com\/fr\/docs\/2-factor-authentication-integration-by-plugin-contributors\/#breadcrumblist"},"author":{"@id":"https:\/\/memberpress.com\/fr\/blog\/author\/nikolacaseproof-com\/#author"},"creator":{"@id":"https:\/\/memberpress.com\/fr\/blog\/author\/nikolacaseproof-com\/#author"},"datePublished":"2024-02-13T09:18:03-05:00","dateModified":"2025-10-27T08:16:35-04:00"},{"@type":"WebSite","@id":"https:\/\/memberpress.com\/fr\/#website","url":"https:\/\/memberpress.com\/fr\/","name":"MemberPress","description":"The All-In-One WordPress Membership Plugin","inLanguage":"fr-FR","publisher":{"@id":"https:\/\/memberpress.com\/fr\/#organization"}}]},"og:locale":"fr_FR","og:site_name":"MemberPress","og:type":"article","og:title":"2 Factor Authentication Integration by Plugin Contributors | MemberPress","og:description":"This documentation will show you how to install and activate 2-factor authentication for your MemberPress site. It will also explain how to make it so that the member is required to use 2-factor authentication to be able to log in. Note: This integration is available to MemberPress Growth and Scale plan members. If you're subscribed","og:url":"https:\/\/memberpress.com\/fr\/docs\/2-factor-authentication-integration-by-plugin-contributors\/","og:image":"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg","og:image:secure_url":"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg","og:image:width":1650,"og:image:height":1275,"article:published_time":"2024-02-13T14:18:03+00:00","article:modified_time":"2025-10-27T12:16:35+00:00","article:publisher":"https:\/\/www.facebook.com\/memberpress\/","twitter:card":"summary_large_image","twitter:site":"@memberpress","twitter:title":"2 Factor Authentication Integration by Plugin Contributors | MemberPress","twitter:description":"This documentation will show you how to install and activate 2-factor authentication for your MemberPress site. It will also explain how to make it so that the member is required to use 2-factor authentication to be able to log in. Note: This integration is available to MemberPress Growth and Scale plan members. If you're subscribed","twitter:image":"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg"},"aioseo_meta_data":{"post_id":"62267","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"seo_analyzer_scan_date":"2025-10-27 12:24:32","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":"0","open_ai":null,"ai":{"faqs":[],"keyPoints":[],"titles":[],"descriptions":[],"socialPosts":{"email":[],"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2024-02-13 14:18:04","updated":"2026-03-03 14:53:00"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/memberpress.com\/fr\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/memberpress.com\/fr\/doc-categories\/add-ons\/\" title=\"Add-ons\">Add-ons<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/memberpress.com\/fr\/doc-categories\/third-party\/\" title=\"Third-Party\">Third-Party<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t2 Factor Authentication Integration by Plugin Contributors\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/memberpress.com\/fr"},{"label":"Add-ons","link":"https:\/\/memberpress.com\/fr\/doc-categories\/add-ons\/"},{"label":"Third-Party","link":"https:\/\/memberpress.com\/fr\/doc-categories\/third-party\/"},{"label":"2 Factor Authentication Integration by Plugin Contributors","link":"https:\/\/memberpress.com\/fr\/docs\/2-factor-authentication-integration-by-plugin-contributors\/"}],"_links":{"self":[{"href":"https:\/\/memberpress.com\/fr\/wp-json\/wp\/v2\/ht-kb\/62267","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/memberpress.com\/fr\/wp-json\/wp\/v2\/ht-kb"}],"about":[{"href":"https:\/\/memberpress.com\/fr\/wp-json\/wp\/v2\/types\/ht_kb"}],"author":[{"embeddable":true,"href":"https:\/\/memberpress.com\/fr\/wp-json\/wp\/v2\/users\/62252"}],"replies":[{"embeddable":true,"href":"https:\/\/memberpress.com\/fr\/wp-json\/wp\/v2\/comments?post=62267"}],"version-history":[{"count":5,"href":"https:\/\/memberpress.com\/fr\/wp-json\/wp\/v2\/ht-kb\/62267\/revisions"}],"predecessor-version":[{"id":75624,"href":"https:\/\/memberpress.com\/fr\/wp-json\/wp\/v2\/ht-kb\/62267\/revisions\/75624"}],"wp:attachment":[{"href":"https:\/\/memberpress.com\/fr\/wp-json\/wp\/v2\/media?parent=62267"}],"wp:term":[{"taxonomy":"ht_kb_category","embeddable":true,"href":"https:\/\/memberpress.com\/fr\/wp-json\/wp\/v2\/ht-kb-category?post=62267"},{"taxonomy":"ht_kb_tag","embeddable":true,"href":"https:\/\/memberpress.com\/fr\/wp-json\/wp\/v2\/ht-kb-tag?post=62267"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}