代码之家  ›  专栏  ›  技术社区  ›  Amit

通过Way2发送短信需要帮助

  •  -1
  • Amit  · 技术社区  · 15 年前

    我正在用Visual C 2.0构建一个桌面应用程序,可以通过way2sms.com发送短信。你们中有人尝试过这样的事情吗…?请帮忙。

    6 回复  |  直到 11 年前
        1
  •  3
  •   Pandian    11 年前

    此链接有解决方案

    http://www.aswinanand.com/2008/07/send-free-sms-web-service/

    我们可以将参数传递到Web请求类的帮助下提供的URL。我是用下面的台词写的

    HttpWebRequest request = (HttpWebRequest) WebRequest.Create("_http://www.aswinanand.com/sendsms.php?uid=" + this.txtUserID.Text + "&pwd=" + this.txtPassword.Text + "&phone=" + this.txtToMobileNo.Text + "&msg=" + this.txtMessage.Text);
    
    StreamReader reader = new StreamReader(request.GetResponse().GetResponseStream(), Encoding.UTF8);
    return reader.ReadToEnd();
    

    在Java中实现了另一个工具。 http://way2sms.codeplex.com/ ,我现在正在C中实现。

        2
  •  1
  •   Wout    15 年前

    切勿使用2毫秒。 我用的是clickatell。它甚至在网络服务器上也很有效。

    http://www.clickatell.com/developers/api_comobject.php

        3
  •  1
  •   irshad    14 年前

    这是一篇关于使用way2sms发送短信息的好文章

    http://codeglobe.in/api/way2sms/17-way2sms-api.html

        4
  •  0
  •   Ubaid    13 年前

    我开发了一个way2sms和其他提供商的API,每个人都可以直接使用。去看看吧 http://ubaid.tk/sms/

    您可以使用我创建的网页,也可以使用API结构。例如,您的应用程序可以直接将请求转发到

    http://ubaid.tk/sms/sms.aspx?uid=99999xxxxx&pwd=12345&msg=your 您要2发送的短信息文本&phone=999666990&provider=way2sms

    其中uid是way2sms用户ID, pwd是way2sms密码,msg是您需要发送的信息,phone是您发送短信息时的电话号码。 不同的供应商是way2sms、fullonsms、smsinside和tezsms。

    100%工作,一直工作。:)

    干杯。。

        5
  •  0
  •   Moiz    12 年前

    为此,您需要输入用于SMS的API并集成到ASP.NET应用程序中。

    Download SOurceCode HEre

    http://alfasms.alfredfrancis.in/?uname=YOUR_USERNAME&pass=YOUR_PASSWORD&to=YOUR_RECEPTIANT&mess=YOUR_MESSAGE&gateway=YOUR_GATEWAY

    >> Where YOUR_USERNAME your way2sms/160by2/fullonsms/sms440/site2sms USERNAME(ie mobile number)
    >>Where YOUR_PASSWORD your way2sms/160by2/fullonsms/sms440/site2sms PASSWORD.
    >> Where YOUR_RECEPTIANT is to which number you want to send SMS.
    >> Where YOUR_MESSAGE is the message you want to send.
    >> Where YOUR_GATEWAY is way2sms/160by2/fullonsms/sms440/site2sms.
    
    string connectionString = "<a href="http://alfasms.alfredfrancis.in/?uname=YOUR_USERNAME&pass=YOUR_PASSWORD&to=YOUR_RECEPTIANT&mess=YOUR_MESSAGE&gateway=YOUR_GATEWAY">http://alfasms.alfredfrancis.in/?uname=YOUR_USERNAME&pass=YOUR_PASSWORD&to=YOUR_RECEPTIANT&mess=YOUR_MESSAGE&gateway=YOUR_GATEWAY</a>";
    
    try
     {
    
    System.IO.Stream SourceStream = null;
    
    System.Net.HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(connectionString);
    
    myRequest.Credentials = CredentialCache.DefaultCredentials;
    
    HttpWebResponse webResponse = (HttpWebResponse)myRequest.GetResponse();
    
    SourceStream = webResponse.GetResponseStream();
    
    StreamReader reader = new StreamReader(webResponse.GetResponseStream());
    
    string str = reader.ReadLine();
    
    }
    
    catch (Exception ex)
     {
    
    }
    
        6
  •  -1
  •   Mohan Ram    13 年前

    请访问

    http://mohanramphp.kodingen.com/blog/2011/01/13/send-free-sms-%E2%80%93-web-service/

    目前 aswinanand 发送短信息的代码无效。

    在博客中给出了发送短信的用法。

    简短示例用法:

    http://mohanramphp.elementfx.com/sms/index.php?uid=9933445566&pwd=password&phone=9812345678;9933445566&msg=这是示例消息