Giter VIP home page Giter VIP logo

smshosting-verify-number-otp-swift's Introduction

Smshosting Verify OTP

You can use Smshosting Verify to:

  • check that a person has access to a specific phone number
  • verify a transaction
  • 2-factor authentication

How to verify a phone number:

  1. SmshostingVerify sends a pin via sms to the required number
  2. The user inserts pin into application
  3. SmshostingVerify check that the PIN entered by user is the one you sent

INSTALLATION

CocoaPods

In your Podfile:

pod 'SmshostingVerifyNumberOTP', '~> 1.03'

Import Framework:

import SmshostingVerifyNumberOTP

Copy File

Copy SmshostingVerify.swift file into your project

USAGE

Initialization

In your AppDelegate.swift

SmshostingVerify.startWithKeyAndSecret( key:"AUTH_KEY", secret:"AUTH_SECRET" )

You can obtain your AUTH_KEY and AUTH_SECRET by logging into your smshosting.it account.

Send Pin

SmshostingVerify.sendPinWithPhoneNumberAndText(phoneNumber: completeNumber, text:"SMSHosting code ${verify_code}", sandbox:false, completion: {
            (result: [String:Any]) in
            DispatchQueue.main.async {
                if(result["errorCode"] == nil){
                    //Request Done
                    //Pin sent, do what you want...

                    //save verifyId
                    self.verifyId = result["verify_id"] as! String
                }
                else{
                    //Request Error
                    //Pin NOT sent, handle error...
                }
            }
        })

Verify Pin

SmshostingVerify.verifyWithIdAndCode(verifyId: verifyId, verifyCode: pinTextField.text!, completion: {
            (result: [String:Any]) in
            DispatchQueue.main.async {
                if(result["errorCode"] == nil){
                    //Request Done
                    if(result["verify_status"] != nil){
                        let statusString:String = result["verify_status"] as! String
                        if(statusString == "VERIFIED"){
                            //Verification done!                      }
                        else{
                            //Verification failed, entered pin is not valid
                        }
                    }
                }
                else{
                    //Request Error
                    //Verification failed, handle error...
                }
            }
        })

MORE...

Smshosting OTP API documentation: https://www.smshosting.it/it/docs/sms-rest-api/sms-otp

smshosting-verify-number-otp-swift's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.