Is it possible to parse SMS PDU using just golang
executing AT command
AT+CMGF=0
OK
AT+CMGL=4
+CMGL: 0,1,,26
0791361907002039040C9136198748701300005150713220052308C8303A8C0EA3C3
is there way to decode this in go?
0791361907002039040C9136198748701300005150713220052308C8303A8C0EA3C3
if there's not, can you suggest a work around.
Yep. A quick search turned up: github.com/xlab/at/sms. Here's an example program:
Running that gives me:
Also the parent package seems like it has a bunch of functions you may find useful.