how to get the verified phone Number in E164 format using SINCH

1.3k Views Asked by At

Hi I implement the sms verification following SINCH tuto:

 verification.verify(enterPin.text!,
                            completion: { (success:Bool, error:NSError?) -> Void in
                                self.spinner.stopAnimating();
                                self.verifyButton.enabled = true;
                                self.enterPin.enabled = true;
                                if (success) {
                                    //here I want to get the phone number in theE164 Format
                                    self.status.text = "Verified";                        

                                } else {
                                    self.status.text = error?.description;
                                }
        });

I want to retrieve the phone number in the E164 FORMAT if the verification succeeded.. thanks for your help!

2

There are 2 best solutions below

0
On BEST ANSWER

There is a phone number formatter included in the sinch SDK, however the phonenumber is not returned in the result, you should format the number e164 with the formatter even before you send it to sinch. If you ave a new view for entering the code, just pass the number over to that view when you do the transition.

2
On

Use this library

and then use this call:

let formattedString: String = try phoneUtil.format(phoneNumber, numberFormat: .E164)