怎么用vb.net写微信企业号发送消息,本人写的接收方始终收不到,请,多谢

如何用vb.net写微信企业号发送消息,本人写的接收方始终收不到,请高手指点,谢谢
如何用vb.net写微信企业号发送消息,本人写的接收方始终收不到,请高手指点,谢谢,本人新手,希望有详细点的例子


 Dim postDataBytes As Byte() = Encoding.UTF8.GetBytes(postData)
                    Dim req As HttpWebRequest = WebRequest.Create(url)
                    req.Method = "POST"
                    req.ContentType = "application/x-www-form-urlencoded"
                    req.ContentLength = postDataBytes.Length
                    req.AllowAutoRedirect = True

                    Dim reqStream As Stream = req.GetRequestStream()
                    reqStream.Write(postDataBytes, 0, postDataBytes.Length)
                    reqStream.Close()

postdata,url在微信企业号接口调试工具测试均无问题,但是接受方始终收不到信息,请高手指点,谢谢!!
微信企业号接口调试工具返回的信息
HTTP/1.1 200 OK
Connection: keep-alive
Content-Type: application/json; charset=utf-8
Content-Length: 27
 {"errcode":0,"errmsg":"ok"}
------解决思路----------------------
钱给到位了吗?