B4J Question Client not authenticated ??

jinyistudio

Well-Known Member
Licensed User
Longtime User
Hi
Following code, It is ok when i test in windows7 but it's not ok when i test in debian/Raspberry pi. It always give Exception as attachied images file !

job2.PostString("https://oms.every8d.com/API21/HTTP/sendsms.ashx",s1) => Peer not authenticated

ssl.png


B4X:
    Dim s1 As String = "UID=" & sms_account & "&PWD=" & sms_passwd & "&SB=溫度異常&MSG=溫差:" & ct1 & "&DEST=" & sms_phone
    Dim job2 As HttpJob
    job2.Initialize("auto",Me)
    job2.PostString("https://oms.every8d.com/API21/HTTP/sendsms.ashx",s1)
 
Top