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!
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.