Назад

Nxsms Code

SMS codes are vulnerable to SIM swapping. Download Google Authenticator, Authy, or Microsoft Authenticator. Move your 2FA away from SMS.

def send(self, sender, recipient, message_text): """ Sends the SMS message. """ payload = 'api_key': self.api_key, 'api_secret': self.api_secret, 'from': sender, 'to': recipient, 'text': message_text nxsms code