我正在制定 2 路短信服务。
用户将向 SMS 服务器平台 (www.sms.com) 提供的虚拟号码发送 SMS。该短信服务器平台会将用户短信数据传递到我的网址(http://www.yourdomainname.com/ReceiveSMS?from=from&message=message)
现在我根据“消息”处理用户请求,然后我需要回复这个 url (www.sms.com/optin.php?user=username&pass=password&to=to_mobile_number&message=dynamic_message)
我的问题是如何在处理后将其发布到网址 www.sms.com/optin.php?user=username&pass=password&to=to_mobile_number&message=dynamic_message。
我想到的一种方法是使用 HTTPFound。
想知道是否有更有效的方法?