Skip to main content

Integrating Google reCAPTCHA Enterprise in iOS apps Swift and Google Cloud

Google ReCaptcha =>> Integrating Google reCAPTCHA Enterprise in iOS apps Swift

If are you implement reCAPTCHA Enterprise,  then you contact Contact our sales team for reCAPTCHA Enterprise iOS SDK is accessible after a security review. Then Create a reCAPTCHA Key for the iOS app platform.

Step by Step

  1.  Choose the best method for setting up reCAPTCHA Enterprise in your environment and complete the setup.
  2. iOS SDK is accessible after a security review. Contact our sales team to onboard your site to this feature.
  3.  Create a reCAPTCHA Key for the iOS app platform.

Then Depending on your integration method, ask your sales representative to grant you access to one of the following: reCAPTCHA Enterprise CocoaPods repository, the Swift Package Manager repository, or the iOS SDK download .

Integrating reCAPTCHA Enterprise Two Way:- 

  1. Direct download => Download the SDK binary from the iOS SDK download page. - https://cloud.google.com/recaptcha-enterprise/docs/download-ios-sdk
  2. Download the SDK using CocoaPods

  •   Generate a git cookie.
  •   Create a Podfile and add the following lines to your Podfile:

     source "https://cpdc-eap.googlesource.com/RecaptchaEnterprise.git"

     source "https://github.com/CocoaPods/Specs.git"

     pod "RecaptchaEnterprise", "17.0.0"

  •   Install the required dependencies by running pod update.

After Install CocoaPods - Configuring the app

 1. To ensure that -ObjC is listed on your linker flags, navigate to Target > Build Settings > All > Linking and verify that Other Linker Flags shows -ObjC.

 2. Objective-C bridging header File Add, Import

    #import <recaptcha/recaptcha.h>


Implement with in ViewController

let recaptchaClient = RecaptchaClient(siteKey: "reCAPTCHA_KEY_iOS")


Call to the execute() method to return a reCAPTCHA token

    func enterpriseReCaptcha(){

        recaptchaClient.execute(RecaptchaAction(action: .login)) { token, error in

            if let recaptchaToken = token {

                print(recaptchaToken.recaptchaToken)

            }

            if let error = error {

                print(error)

            }

        }

    }

Reference ==> https://cloud.google.com/recaptcha-enterprise/docs/instrument-ios-apps#direct-download

Comments

Popular posts from this blog

Add a Scene Delegate to your existing project with Storyboard in Swift

To add a scene delegate, first, create a new Swift file that you’ll call "SceneDelegate" containing a subclass of UIResponder, just like the AppDelegate, and that conforms to UIWindowSceneDelegate.  As your app might supports other versions than iOS 13, make this class only available for iOS 13. This is what you should have : If you are working a project that is storyboard based, please set storyboard  initial view controller SceneDelegate.swift import UIKit @available ( iOS 13.0 , *) class SceneDelegate : UIResponder , UIWindowSceneDelegate {     var window : UIWindow ?     func scene ( _ scene: UIScene , willConnectTo session: UISceneSession , options connectionOptions: UIScene . ConnectionOptions ) {                  let storyboard = UIStoryboard (name: "Main" , bundle: nil )         let initialViewController = storyboard. instantiateViewController (withIdentifier: "ViewController" )         let mainNavigationController = UINavigationControlle

How Create Animated Circle Progress Bar iOS 11 Swift 4

  Animated Circle Progress Bar iOS 11 Swift 4 With MBCircularProgressBa r - https://github.com/MatiBot/MBCircularProgressBar A circular, animatable & highly customizable progress bar from the Interface Builder Swift, Using pod fite MBCircularProgressBar Installation Cocoapods terminal. pod "MBCircularProgressBar" That - A Simple Steps to installed pod file -        Open terminal        Command on terminal go to project folder Cd path        set your project path on terminal.        command : pod init        open pod file - open -e podfile        added in pod file with in : pod "MBCircularProgressBar"        Command : Pod install        Close project of Xcode        open your Project from terminals        Command : open PodDemos.xcworkspace After opern StoryBoard and Now drag a UIView over the viewController in storyboard Or set UIView Constraint width, height or verticle or horzentail space and set a class MBCircul

How to Use Multiple Sections in UITableView iOS Swift !

Multiple sections in UITableView iOS Swift. UITableView is very important part of iOS ecosystem. So we split tableviews in sections. Then its easier to find right information.  1. First let’s create a project as usual. Create a new single view application X code project. Set project name to UIViewController.  2. Go to main storyboard & select view controller & use UITableView 3. Select tableview & make it initial view controller  4 Create a custom Sections Class like Name => TableSections, create register cell static return “ getCellNibs ” method. Then create  4 section enum “TableItems” then after append all sections to an array model. import UIKit struct CellNib {      static func getCellNibs () -> [ String ] {          return [ "Cell1" , "Cell2" , "Cell3" , "Cell4" ]     } } enum TableItems : Int {      case TableSections1      case TableSections2      case TableSections3      case TableSections4 } class TableSec