Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sms retriever API can't get sms info with starting with \u200b\u200b

I am using Google newly launched Sms Retriever API and it works fine when i receive message like this <#>code:32343 xxxxxxxxxxx but it doesn't work message like this \u200b\u200bcode:32343 xxxxxxxxxxx on my real device (htc one) it is weird that everything work fine on virtual device, so can you guys tell me what's wrong with my device?

API: https://developers.google.com/identity/sms-retriever/

like image 850
Tornike Kurdadze Avatar asked Nov 28 '25 11:11

Tornike Kurdadze


1 Answers

According google, the message need to fullfill following requirements:

  • Begin with the prefix <#>

Your "\u200b\u200b" is not the same, so it will not work obviously

See also: https://developers.google.com/identity/sms-retriever/verify

like image 99
myfknoll Avatar answered Nov 30 '25 00:11

myfknoll