码迷,mamicode.com
首页 > Windows程序 > 详细

Delphi通过调用Http接口实现短信发送的功能

时间:2015-03-06 17:11:16      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:短信验证接口   短信验证   短信   手机验证   

通过验证码短信http调用接口,您可以很快速的在网站或者app中集成手机号验证功能,该源码只是核心代码,具体可以根据您的实际需求进行扩展。

unit Unit1;
interface
uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls,Unit2;

type
  TForm1 = class(TForm)
    Button1: TButton;
    Memo1: TMemo;
    Edit1: TEdit;
    Edit2: TEdit;
    Edit3: TEdit;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
begin
Memo1.Text:=Unit2.GetMyWebServericeSoap(false,'http://106.ihuyi.com/webservice/sms.php').Submit('用户名','密码','手机号码','您的验证码是:2647。请不要把验证码泄露给其他人。');
end;
end.

自助申请帐户地址:http://www.ihuyi.com/product.php
完整接口文件地址:http://www.ihuyi.com/upload/file/cu-fa-jie-kou.rar 

Delphi通过调用Http接口实现短信发送的功能

标签:短信验证接口   短信验证   短信   手机验证   

原文地址:http://blog.csdn.net/guysgo/article/details/44101507

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!