Hello everyone,
I’d like to implement an SMS 2 step verification in my app, I know it can be done ‘easily’ directly with a phone app that ‘reacts’ to a firebase db variable change, I’m checking online SMS services but I don’t know what I should do with them, any help please?
I have this, but I don’t know how to use it:
curl -X “POST” “https://rest.nexmo.com/sms/json”
-d “from=Pizza App”
-d “text=Hello from Nexmo”
-d “to=393284*******”
-d “api_key=e*******”
-d “api_secret=TiyN9*******YlAQi”
or this exampleJSON
{
"message-count": 1,
"messages": [
{
"to": "447700900000",
"message-id": "0A0000000123ABCD1",
"status": "0",
"remaining-balance": "3.14159265",
"message-price": "0.03330000",
"network": "12345"
}
]
}
Would be much appreciated, thanks.