0

我在我的网站中使用 php 中的 infobip 示例代码进行短信集成。当我尝试在以下行使用 oneapi-sample 应用程序发送消息时出现以下错误: $message = new SMSRequest();

致命错误:在第 15 行的 /var/www/html/oneapi-php-master/oneapi-sample-app/send-message-action.php 中找不到类 'infobip\models\SMSRequest'

4

1 回答 1

1

由于您的项目是使用 php 开发的,您可以查看官方 php send sms 类

http://phpclasses.org/package/9522-PHP-Send-SMS-messages-with-Spring-Edge-API.html

您可以只包含使用 http api 发送短信的类文件,您可以调用如下函数:

$classobj->sendsms($mobileno, message);

这是自定义或与 php 集成的最简单的类。目前这个类正在使用不同的 sms api 网关。您只需更改 RestAPI URL 和参数以与 InfoBip 一起使用。

于 2017-08-29T07:05:50.997 回答